/* ==========================================================
   CABECERA PROGRAMA
========================================================== */

.program-hero {
    padding: 48px 0;

    color: white;

    background:
        linear-gradient(
            135deg,
            #071b5b 0%,
            #123da8 60%,
            #1597df 100%
        );
}

.program-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.program-kicker {
    display: inline-block;
    margin-bottom: 7px;

    color: var(--cyan-400);

    font-size: 11px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.program-hero h1 {
    margin: 0 0 8px;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
}

.program-hero p {
    margin: 0;

    color: rgba(255,255,255,0.78);
    font-size: 16px;
}

.program-back {
    flex: 0 0 auto;

    padding: 11px 16px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;

    background: rgba(255,255,255,0.08);

    color: white;

    font-size: 13px;
    font-weight: 800;
}

/* ==========================================================
   CONTENIDO
========================================================== */

.program-section {
    padding: 55px 0 80px;
}

.program-filters {
    margin-bottom: 28px;
    padding: 18px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    gap: 14px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(13,47,105,0.06);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    color: var(--text-700);

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
}

.filter-group select,
.filter-group input {
    width: 100%;
    height: 43px;

    padding: 0 12px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: white;

    color: var(--text-900);

    font: inherit;
    font-size: 13px;

    outline: none;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--cyan-500);

    box-shadow:
        0 0 0 3px rgba(25,183,242,0.10);
}

/* ==========================================================
   TABLA PROGRAMA
========================================================== */

.schedule-day {
    background: white;

    border: 1px solid var(--border);
    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(13,47,105,0.06);
}

.schedule-day-header {
    padding: 22px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    border-bottom: 1px solid var(--border);
}

.schedule-label {
    display: block;
    margin-bottom: 3px;

    color: var(--cyan-500);

    font-size: 10px;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.10em;
}

.schedule-day-header h2 {
    margin: 0;

    color: var(--blue-950);
    font-size: 25px;
}

.schedule-count {
    padding: 6px 10px;

    border-radius: 999px;

    background: #edf5ff;
    color: var(--blue-700);

    font-size: 11px;
    font-weight: 900;
}

.schedule-table-wrap {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    min-width: 900px;

    border-collapse: collapse;
}

.schedule-table th {
    padding: 13px 16px;

    background: #f5f8fc;

    color: var(--text-500);

    border-bottom: 1px solid var(--border);

    font-size: 10px;
    font-weight: 900;

    text-align: left;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.schedule-table td {
    padding: 15px 16px;

    border-bottom:
        1px solid #edf1f6;

    color: var(--text-700);

    font-size: 13px;
}

.schedule-table tbody tr:last-child td {
    border-bottom: 0;
}

.schedule-table tbody tr:hover {
    background: #fafcff;
}

.schedule-time {
    color:
        var(--blue-950) !important;

    font-size:
        16px !important;

    font-weight:
        900;
}

/* ==========================================================
   TIPO DE PRUEBA
========================================================== */

.type-badge {
    display: inline-flex;

    padding: 5px 9px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;
}

.type-track {
    background: #e9f4ff;
    color: #1364b5;
}

.type-field {
    background: #e9f8f0;
    color: #2c8651;
}

.type-combined {
    background: #f2edff;
    color: #6c4ab6;
}

.type-para {
    background: #fff0e8;
    color: #b45a25;
}

.series-link {
    color: var(--blue-800);
    font-weight: 800;
}

.schedule-status {
    display: inline-flex;

    padding: 5px 9px;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 900;

    text-transform: uppercase;
}

.schedule-status.pending {
    background: #edf4ff;
    color: var(--blue-700);
}