/* WhatsApp Floating Button */
.wib-wa-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.wib-wa-button:hover {
    transform: scale(1.1);
}

.wib-wa-button.bottom-right {
    right: 20px;
}

.wib-wa-button.bottom-left {
    left: 20px;
}

/* WhatsApp Chat Window */
.wib-wa-window {
    position: fixed;
    bottom: 90px;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 9999;
    overflow: hidden;
}

.wib-wa-window.bottom-right {
    right: 20px;
}

.wib-wa-window.bottom-left {
    left: 20px;
}

.wib-wa-window.active {
    display: flex;
}

/* Header */
.wib-wa-header {
    background: #075e54;
    color: #fff;
    padding: 20px;
}

.wib-wa-header h3 {
    margin: 0;
    font-size: 18px;
}

.wib-wa-header p {
    margin: 5px 0 0;
    font-size: 13px;
    opacity: 0.8;
}

/* Member List */
.wib-wa-content {
    max-height: 400px;
    overflow-y: auto;
    padding: 10px;
}

.wib-wa-member {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #f9f9f9;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
}

.wib-wa-member:hover {
    background: #f0f0f0;
}

.wib-wa-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.wib-wa-info {
    flex: 1;
}

.wib-wa-name {
    font-weight: bold;
    font-size: 14px;
}

.wib-wa-team {
    font-size: 12px;
    color: #888;
}

.wib-wa-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 10px;
}

.wib-wa-status.online {
    background: #25d366;
}

.wib-wa-status.offline {
    background: #ccc;
}