.whatsapp-floating-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-floating-button {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-floating-button:hover {
    transform: scale(1.1);
}

.whatsapp-floating-button img {
    width: 30px;
    height: 30px;
}

.whatsapp-floating-content {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 250px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
}

.whatsapp-floating-header {
    padding: 10px;
    background-color: #25D366;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-floating-close {
    cursor: pointer;
    font-size: 20px;
}

.whatsapp-floating-attendants {
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.whatsapp-floating-attendant {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.whatsapp-floating-attendant:hover {
    background-color: #f5f5f5;
}

.whatsapp-floating-attendant img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.whatsapp-floating-attendant-info {
    display: flex;
    flex-direction: column;
}

.whatsapp-floating-attendant-name {
    font-weight: bold;
}

.whatsapp-floating-attendant-department {
    font-size: 12px;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    .whatsapp-floating-content {
        width: 280px;
    }

    .whatsapp-floating-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-floating-button img {
        width: 25px;
        height: 25px;
    }
}
