.angie-wa-floating-btn-d98466c2 {
    position: fixed;
    bottom: 80px; /* Moved higher up */
    right: 30px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 20px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 15px;
}

.angie-wa-floating-btn-d98466c2:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.angie-wa-text-bubble {
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.angie-wa-icon-container {
    background-color: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.4);
}

.angie-whatsapp-icon {
    fill: #fff;
    width: 28px;
    height: 28px;
}

/* Hide on specific pages if needed (example: hide on login page) */
body.login .angie-wa-floating-btn-d98466c2 {
    display: none;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .angie-wa-floating-btn-d98466c2 {
        bottom: 70px; /* Adjust for mobile too */
        right: 20px;
        padding: 4px 4px 4px 15px;
        gap: 10px;
    }
    
    .angie-wa-text-bubble {
        font-size: 14px;
    }
    
    .angie-wa-icon-container {
        width: 40px;
        height: 40px;
    }
    
    .angie-whatsapp-icon {
        width: 22px;
        height: 22px;
    }
}
