.whatsapp-me-button-container {
    position: fixed;
    z-index: 999;
    /* Asegura que esté por encima de otros elementos */
}

.whatsapp-me-position--bottom-right {
    bottom: 20px;
    right: 20px;
}

.whatsapp-me-position--top-left {
    top: 20px;
    left: 20px;
}

.whatsapp-me-position--top-right {
    top: 20px;
    right: 20px;
}

.whatsapp-me-position--bottom-left {
    bottom: 20px;
    left: 20px;
}

.whatsapp-me-button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Add transition for text color */
}

.whatsapp-me-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.whatsapp-me-button--icon-only .whatsapp-me-icon {
    margin-right: 0;
}

.whatsapp-me-button--icon-only {
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
}

.whatsapp-me-button--icon-only .whatsapp-me-text {
    display: none;
}

.whatsapp-me-text {
    font-size: 16px;
}

/* Ocultar el texto en pantallas más pequeñas y centrar el icono */
@media (max-width: 600px) {
    .whatsapp-me-text {
        display: none;
    }

    .whatsapp-me-button {
        padding: 10px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
    }

    .whatsapp-me-icon {
        margin-right: 0;
    }
}