.filter-label {
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 1rem;
    padding-top: 0.4em;
    cursor: default;
    user-select: none;
}
/* Sticky date header */
.day-section h2 {
    position: sticky;
    top: 0;
    background: #1e1e1e;
    z-index: 2;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 2px 8px #0002;
}
/* Dropdown styling */
.filters label {
    font-size: 1.3rem;
    margin-right: 1rem;
    font-weight: bold;
    padding-top: 0.4em;
    cursor: default;
    user-select: none;
    font-weight: 500;
}

/* Hide only the course select, not all selects */
/* Hide only the course select for Choices.js, keep styles for other selects */
#course-filter {
    display: none !important;
}

.filters select {
    font-size: 1.3rem;
    padding: 0.7em 2em 0.7em 1em;
    border-radius: 8px;
    border: 1.5px solid #444;
    background: #232323;
    color: #e0e0e0;
    margin-right: 2rem;
    min-width: 220px;
    max-width: 220px;
    box-shadow: 0 2px 12px #0003;
    outline: none;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-weight: 500;
    cursor: pointer;
    height: 44px;
}
.filters select:focus {
    border-color: #90caf9;
}

/* Responsive filter layout */
.filters {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.filter-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    gap: 0.5rem;
    flex-wrap: nowrap;
}
/* Mobile-friendly course checkboxes */
#course-checkboxes label {
    font-size: 1.3rem;
    margin-right: 1rem;
    font-weight: 500;
    padding-top: 0.4em;
    cursor: default;
    user-select: none;
    background: #232323;
    color: #e0e0e0;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
    cursor: pointer;
    min-width: 120px;
}
#course-checkboxes input[type="checkbox"] {
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.5em;
}
@media (max-width: 600px) {
    #course-checkboxes {
        flex-direction: column;
        gap: 0.2em;
    }
    #course-checkboxes label {
        font-size: 4vw;
        min-width: 60vw;
        padding: 0.6em 1em;
        margin-bottom: 0.3em;
    }
    #course-checkboxes input[type="checkbox"] {
        width: 1.8em;
        height: 1.8em;
        margin-right: 0.7em;
    }
}

@media (max-width: 600px) {
    .filters {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    .filter-group {
        flex-direction: row;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
@media (max-width: 600px) {
    .filters label {
        font-size: 4vw;
    }
    .filters select {
        font-size: 4vw;
        min-width: 40vw;
        padding: 0.6em 1.2em 0.6em 0.6em;
        height: 44px;
    }
}
body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100vw;
    min-width: 0;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 0 10px #000;
    width: 95vw;
    min-width: 0;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
}

h2 {
    margin-top: 2rem;
    color: #90caf9;
}

.last-updated {
    font-size: 0.9rem;
    color: #bbbbbb;
    margin-bottom: 1.5rem;
}

.tee-list {
    list-style-type: none;
    padding-left: 0 !important;
    margin-top: 0.5rem;
}

.tee-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2a2a2a;
    padding: 0.75rem 1.2rem;
    border-bottom: 1px solid #444;
    margin-bottom: 4px;
    border-radius: 4px;
    font-size: 1.1rem;
    word-break: break-word;
    min-height: 48px;
}

.course {
    font-weight: bold;
    color: #ffcc80;
    font-size: 1.05em;
    flex: 1 1 60%;
    min-width: 0;
}

.time {
    color: #b2dfdb;
    font-size: 1.05em;
    text-align: right;
    flex: 1 1 40%;
    min-width: 0;
}
/* Responsive styles for mobile/tablet */
@media (max-width: 600px) {
    .container {
        padding: 0.5rem;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        border-radius: 0;
        min-width: 0;
    }
    h1 {
        font-size: 5vw;
    }
    h2 {
        font-size: 4vw;
        margin-top: 1rem;
    }
    .tee-list li {
        font-size: 3.8vw;
        padding: 0.6rem 0.5rem;
        min-height: 32px;
    }
    .course, .time {
        font-size: 3.8vw;
    }
    .last-updated {
        font-size: 3vw;
    }
    .no-times {
        font-size: 3vw;
    }
}

.no-times {
    font-style: italic;
    color: #888888;
    margin-top: 0.5rem;
}

