.whatsapp-float-container {
    position: fixed;
    right: 15px;
    bottom: 100px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.whatsapp-main-btn {
    width: 35px;
    height: 35px;
    padding: 5px;
    border-radius: 100px;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    z-index: 10;
}
.whatsapp-main-btn:hover {
    background-color: #20b559;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-main-btn.active {
    transform: rotate(270deg);
}
.whatsapp-accounts {
    display: none;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    background-color: #20b559;
    padding: 15px 15px 10px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.whatsapp-accounts.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}
.accounts-header {
    width: 100%;
    margin-bottom: 5px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.accounts-title {
    font-size: 16px;
    color: #2d3748;
    font-weight: 600;
    text-align: left;
}
.whatsapp-account-card {
    width: 120px;
    background: white;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    border-left: 3px solid #25d366;
}

.whatsapp-account-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.15);
    border-left-color: #128c7e;
}

.account-icon {
    width: 20px;
    height: 20px;
    color: #25d366;
    flex-shrink: 0;
}

.account-info {
    flex: 1;
}

.account-title {
    font-size: 16px;
    color: #2d3748;
}

.message-icon {
    width: 18px;
    height: 18px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 480px) {
    .whatsapp-float-container {
        right: 15px;
        bottom: 100px;
    }

    .whatsapp-main-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .whatsapp-accounts {
        padding: 12px 12px 8px;
    }
    .whatsapp-account-card {
        padding: 10px;
        gap: 10px;
    }

    .account-icon {
        width: 18px;
        height: 18px;
        font-size: 16px;
    }

    .account-title {
        font-size: 15px;
    }

    .account-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
}