/* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
    color: #FFF;
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 3px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 25px;
    }
}

/* Dark theme support */
[data-theme="dark"] .whatsapp-float {
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .whatsapp-float:hover {
    box-shadow: 2px 2px 15px rgba(255, 255, 255, 0.2);
}

/* Animation for entrance */
@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.whatsapp-float {
    animation: slideInLeft 0.5s ease-out 0.5s both;
}