body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0; /* Un fondo claro para que se vea bien la sombra */
    margin: 0;
}

.logout-button {
    background-color: #ffffff; /* Color de fondo blanco */
    color: #333333; /* Color del icono */
    border: none; /* Sin borde */
    padding: 10px 15px; /* Un poco de espacio alrededor del icono */
    font-size: 24px; /* Tamaño del icono */
    cursor: pointer; /* Cambiar el cursor a una manita para indicar que es un botón */
    border-radius: 50%; /* Hacer el botón circular */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra difuminada */
    transition: box-shadow 0.3s ease; /* Transición suave para la sombra */
}

.logout-button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Sombra más pronunciada al pasar el mouse */
}
.boton-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #25D366; /* Color verde principal de WhatsApp */
    color: #FFFFFF; /* Color de texto blanco */
    text-decoration: none;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.boton-whatsapp:hover {
    background-color: #128C7E; /* Color verde oscuro de WhatsApp al pasar el mouse */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.boton-whatsapp .fa-whatsapp {
    margin-right: 8px;
}
#schedule-button svg {
    margin-right: 5px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item:last-child {
    border-bottom: none;
}

.program-image-container {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.program-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
}

.program-live-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background-color: #ff0000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    border: 2px solid #ffffff;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.program-live-badge.is-live {
    transform: scale(1);
    animation: pulse 1.5s infinite;
}

.program-info {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.program-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.program-info p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}
