/* whatsapp-button.css */

.whatsapp-button {
    position: fixed;
    bottom: 1px;
    right: 2px;
    background-color: #25D366;
    color: white;
    padding: 1px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.whatsapp-button img {
    width: 30px;
    height: 30px;
    margin-left: 10px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.whatsapp-button span {
    font-weight: bold;
}
