/* Styles for the WhatsApp popup */
#whatsapp-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

#whatsapp-popup:hover {
    transform: scale(1.05);
}

#whatsapp-popup img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

#whatsapp-popup span {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

#whatsapp-popup .close-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: white;
    color: black;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
