/* Container */
.whatsapp_container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}

/* WhatsApp Floating Button */
.whatsapp_float {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

/* Hover effect for button */
.whatsapp_float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

/* WhatsApp Icon */
.whatsapp_icon {
    width: 35px;
    height: 35px;
}

/* Tooltip (appears on left) */
.whatsapp_tooltip {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 300;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Show tooltip on hover */
.whatsapp_container:hover .whatsapp_tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
