.schedule-page-wrap {
    padding: 60px 0 100px;
    min-height: 70vh;
}

.schedule-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 15px 45px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
    animation: fadeInUp 0.8s ease backwards;
}

.schedule-card-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.schedule-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
}

.sch-h-left h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.sch-h-right {
    text-align: right;
}
.sch-year {
    color: var(--gold);
    font-size: 20px;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.schedule-body {
    padding: 30px;
}

.custom-table-res {
    width: 100%;
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fafafa;
}

.sch-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.sch-table thead tr {
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}
.sch-table th {
    padding: 16px 24px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.sch-table td {
    padding: 22px 24px;
    font-size: 14.5px;
    color: #1e293b;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s;
}
.sch-table tr:last-child td {
    border-bottom: none;
}
.sch-table tr:hover td {
    background: #f8fafc;
}

.sched-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    min-width: 80px;
}
.badge-closed {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}
.badge-open {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    transition: all 0.3s;
}
.badge-open:hover {
    background: #22c55e;
    color: #fff !important;
    transform: translateY(-2px);
}
.badge-soon {
    background: rgba(234, 179, 8, 0.1);
    color: #a16207;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .schedule-page-wrap { padding: 30px 0 60px; }
    .schedule-card-header { padding: 20px; flex-direction: column; text-align: center; gap: 15px; }
    .sch-h-right { text-align: center; width: 100%; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; }
    .schedule-body { padding: 15px; }
    .sch-h-left h3 { font-size: 20px; }
    .sch-year { font-size: 16px; }
}
