/*Estilos para el mensaje de asistencia y el botón de WhatsApp*/
.help-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 150px;/*Ancho de la caja flotante (contiene el texto)*/
    z-index: 1000;
}

.help-box p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #ffffff;
    font-size: 24px;
    border-radius: 50%;
    width: 40px; /*Ancho y el alto iguales para tener un botón circular*/
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    text-decoration: none;
    z-index: 1000;
}

.whatsapp-button i {
    font-size: 28px;/*Para ajustar el tamaño del icono*/
}

.whatsapp-button:hover {
    background-color: #20b858;
}
/*Aquí terminan los estilos para el mensaje de asistencia y el botoón de WhatsApp*/