/* ==========================================
   LAYOUT
========================================== */

.schedule-layout {
    display: flex;
    min-height: 100vh;
    background: #0d1a20;
}

/* ==========================================
   SIDEBAR
========================================== */

.schedule-sidebar {
    width: 600px;
    background: #2c3d41;
    padding: 40px 35px;
    color: #ffffff;
    box-sizing: border-box;
    overflow-y: auto;
    border-right: 1px solid #173239;
}

.sidebar-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 35px;
    text-align:center;
}

/* ==========================================
   DAY BLOCK
========================================== */

.day {
    border-bottom: 1px solid #173239;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.day-header:hover {
    background: #27383a;
}

.arrow {
    font-size: 12px;
    transition: transform .3s ease;
}

.day.open .arrow {
    transform: rotate(180deg);
}

/* Active Day */
.active-day .day-header {
    color: #3cff7f;
}

/* ==========================================
   TIMES LIST
========================================== */

.times {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.day.open .times {
    max-height: 1000px;
}

.time-item {
    border-bottom: 1px solid #173239;
}

.time-item a {
    display: block;
    padding: 14px 25px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: background .2s ease, padding-left .2s ease, color .2s ease;
}

.time-item a:hover {
    background: #173239;
    padding-left: 32px;
}

/* Active Time */
.active-time a {
    background: #27383a;
    color: #3cff7f;
    font-weight: 600;
}

/* ==========================================
   CONTENT AREA
========================================== */

.schedule-content {
    flex: 1;
    padding: 33px 60px;
   background: linear-gradient(to right, #0d1a20, #27383a);
    box-sizing: border-box;
}

.schedule-title {
    font-size: 28px;
    margin-bottom: 45px;
    font-weight: 700;
    color: #111;
    text-align:center;
}

/* ==========================================
   EVENT CARDS
========================================== */

.schedule-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 35px;
}

.schedule-event-card {
    background: #ffffff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.schedule-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.event-thumb img {
    width: 100%;
    display: block;
}

.event-content {
    padding: 22px;
}

.event-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.event-title a {
    text-decoration: none;
    color: #111;
    transition: color .2s ease;
}

.event-title a:hover {
    color: #3cff7f;
}

.event-excerpt {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
}

.event-link {
    text-decoration: none;
    font-size: 14px;
    color: #3cff7f;
    font-weight: 600;
}

.event-link:hover {
    text-decoration: underline;
}

/* ==========================================
   EMPTY / INVALID STATES
========================================== */

.schedule-empty,
.schedule-invalid {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    color: #555;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
}
