<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.slider-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.schedule_section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #18819f;
    color: #fff;
    border-radius: 5px;
    height: 60px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 20px auto;
}

.schedule_section-header-center {
    font-size: 1.9rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}

/* Estructura de dÃ­as */
.schedule_section-days {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.schedule_section-day {
    display: flex;
    flex-direction: column;
}

.schedule_section-day-header {
    background: #18819f;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.schedule_section-day-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Aseguramos que cada fila de tarjetas tenga la misma altura */
.schedule_section-day-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    grid-auto-rows: 1fr; /* Hace que todas las filas tengan la misma altura */
}

/* Estilos de las tarjetas */
.schedule_section-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    margin: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Asegura que la tarjeta ocupe toda la altura del grid */
}

.schedule_section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.schedule_section-card-header {
    background: #18819f;
    color: #fff;
    padding: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Estilo especÃ­fico para el header de las tarjetas del domingo */
#schedule-domingo .schedule_section-card-header {
    background: #8A2BE2;
}

.schedule_section-fecha {
    font-size: 18px;
    font-weight: 600;
}

.schedule_section-icon-container {
    font-size: 20px;
    color: #fff;
    position: absolute;
    right: 15px;
    top: 15px;
}

.schedule_section-card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    background: #fff;
}

.schedule_section-actividad {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    min-height: min-content; /* Permite que el contenido determine la altura mÃ­nima */
}

.schedule_section-bottom-info {
    display: flex;
    flex-direction: column;
    margin-top: auto; /* Empuja la informaciÃ³n al fondo de la tarjeta */
}

.schedule_section-lugar,
.schedule_section-hora {
    font-size: 16px;
    color: #4a4a4a;
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.schedule_section-lugar i,
.schedule_section-hora i {
    margin-right: 8px;
}

.schedule_section-participants {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 16px;
    color: #4a4a4a;
    min-height: 24px;
}

/* Estado de carga */
.schedule_section-loading {
    text-align: center;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 8px;
    margin: 1rem 0;
}

.schedule_section-loading-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.schedule_section-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #18819f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mensaje de error */
.schedule_section-announcement {
    width: 100%;
    border-top: 2px solid #18819f;
    margin-top: 20px;
}

.schedule_section-announcement-text {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    padding: 20px 0;
    box-sizing: border-box;
}

/* Media queries */
@media (max-width: 1200px) {
    .schedule_section-header-center,
    .schedule_section-announcement-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 900px) {
    .schedule_section-header-center,
    .schedule_section-announcement-text {
        font-size: 1rem;
    }
    .schedule_section-day-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .schedule_section-days {
        grid-template-columns: 1fr;
    }
    
    .schedule_section-day-header {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .schedule_section-header-center,
    .schedule_section-announcement-text {
        font-size: 0.9rem;
    }
}</pre></body></html>