#liza-whatsapp-button {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lwb-bottom-right {
    bottom: 20px;
    right: 20px;
    flex-direction: row-reverse;
}

.lwb-bottom-left {
    bottom: 20px;
    left: 20px;
    flex-direction: row;
}

#lwb-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

#lwb-link:hover {
    transform: scale(1.05);
}

.lwb-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.lwb-icon-container svg {
    display: block;
    width: 28px;
    height: 28px;
}

/* Chat Bubble Tooltip */
.lwb-tooltip {
    background-color: #f0f2f5;
    color: #1c1e21;
    text-align: left;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Bubble Tail */
.lwb-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
}

.lwb-bottom-right .lwb-tooltip::after {
    right: -16px;
    border-color: transparent transparent transparent #f0f2f5;
}

.lwb-bottom-left .lwb-tooltip::after {
    left: -16px;
    border-color: transparent #f0f2f5 transparent transparent;
}

/* Animations */
.lwb-animation-pulse .lwb-icon-container {
    animation: lwb-pulse 2s infinite;
}

@keyframes lwb-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.lwb-animation-bounce #lwb-link {
    animation: lwb-bounce 2s infinite;
}

@keyframes lwb-bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}
