/* =========================================
   1. CONTAINER & RESET
   ========================================= */
#chobi-mela-app {
    position: relative;
    width: 100%;
    max-width: 100%;
    font-family: 'Inter', sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
}

/* =========================================
   2. NAVIGATION STRIP (Green & Yellow)
   ========================================= */
.sticky-nav {
    background: #ffffff;
    border-bottom: 2px solid #557c45; /* Green Border */
    width: 100%;
    z-index: 10;
    position: relative; /* Non-sticky as requested */
}

.date-strip {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.date-strip::-webkit-scrollbar {
    display: none;
}

.date-item {
    flex: 0 0 80px;
    text-align: center;
    padding: 14px 0;
    border-right: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #ffffff;
}

/* HOVER STATE: Yellow */
.date-item:hover {
    background: #d7c900; 
    color: #000000;
}

/* ACTIVE STATE: Green */
.date-item.active {
    background: #557c45 !important;
    color: #ffffff !important;
}

.date-item .day-num {
    font-size: 1.35rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
}

.date-item .day-name {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
    display: block;
    margin-bottom: 2px;
}

/* =========================================
   3. SECTION HEADERS
   ========================================= */
.schedule-section {
    /* No margin top here to keep flow tight */
}

.day-header {
    background: #557c45; /* Green Background */
    color: #ffffff;
    padding: 10px 20px;
    margin-top: 50px; /* Space between days */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border-radius: 0 4px 4px 0; /* Slight rounding on right edge */
}

/* =========================================
   4. EVENT ROW LAYOUT (Time Left, Content Right)
   ========================================= */

.event-row {
    display: flex;       /* Forces side-by-side layout */
    flex-direction: row;
    padding: 35px 0;
    border-bottom: 1px solid #e0e0e0; /* Thin underline */
    gap: 30px; /* Space between time and content */
}

/* Hide the last border of the day if desired, or keep it */
.schedule-section .event-row:last-child {
    border-bottom: 1px solid #e0e0e0; 
}

/* --- LEFT COLUMN: TIME --- */
/* Targeting the first div inside event-row */
.event-row > div:first-child {
    flex: 0 0 140px; /* Fixed width for the time column */
    font-size: 1.25rem;
    font-weight: 700;
    color: #557c45; /* Green text for time */
    display: flex;
    align-items: flex-start; /* Align to top */
    gap: 8px;
    line-height: 1.2;
}

/* Icon style inside time column */
.event-row > div:first-child i {
    font-size: 0.9em;
    margin-top: 3px;
    opacity: 0.6;
}

/* --- RIGHT COLUMN: CONTENT --- */
/* Targeting the second div inside event-row */
.event-row > div:last-child {
    flex: 1; /* Takes up all remaining space */
}

.event-row h3 {
    margin: 0 0 12px 0;
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    /* Optional: Remove the underline from title since row has underline */
    text-decoration: none !important; 
}

.event-row .inter-font {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* TAGS */
.tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #557c45; /* Green border */
    color: #557c45;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
    margin-right: 8px;
    background: #fff;
    transition: all 0.2s ease;
}

.tag:hover {
    background: #557c45;
    color: #ffffff;
}

/* =========================================
   5. MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .sticky-nav {
        /* On mobile, keep nav at top or standard */
    }
    
    .day-header {
        width: 100%; /* Full width header on mobile */
        border-radius: 0;
        justify-content: center;
        margin-top: 30px;
    }

    .event-row {
        flex-direction: column; /* Stack vertically */
        gap: 10px;
        padding: 25px 0;
    }

    /* Reset the fixed width of the time column */
    .event-row > div:first-child {
        flex: none;
        width: 100%;
        margin-bottom: 5px;
        font-size: 1.1rem;
    }
    
    .event-row h3 {
        font-size: 1.4rem;
    }
}