/*
=================================================================
RCYS TEAM BUILDER STYLESHEET
Rockdale Christian Youth Softball
Enhanced Visual Design with Chrome Outlines and Shine Effects
=================================================================
*/

/* ==========================================
   COLOR VARIABLES
   ========================================== */
:root {
    --rcys-black: #1a1a1a;
    --rcys-black-light: #2d2d2d;
    --rcys-black-lighter: #3d3d3d;
    --rcys-black-lightest: #4d4d4d;
    --rcys-red: #c41e3a;
    --rcys-red-hover: #a01830;
    --rcys-red-light: #d64a5e;
    --rcys-silver: #c0c0c0;
    --rcys-silver-dark: #a0a0a0;
    --rcys-white: #ffffff;
    --rcys-text-dark: #333333;
    
    /* Chrome effect colors */
    --chrome-highlight: rgba(255, 255, 255, 0.2);
    --chrome-shadow: rgba(0, 0, 0, 0.3);
    --chrome-glow: rgba(196, 30, 58, 0.3);
    --shine-overlay: rgba(255, 255, 255, 0.15);
    --shine-highlight: rgba(255, 255, 255, 0.6);
    
    /* Status colors */
    --status-success: #4CAF50;
    --status-warning: #FFC107;
    --status-error: #f44336;
    --status-info: #2196F3;
}

/* ==========================================
   GLOBAL STYLES
   ========================================== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--rcys-black), var(--rcys-black-light));
    color: var(--rcys-white);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--rcys-red-light);
    text-decoration: none;
}

a:hover {
    color: var(--rcys-red);
}

/* ==========================================
   LAYOUT
   ========================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.container-fluid {
    width: 100%;
    padding: 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col {
    flex: 1;
    padding: 0 10px;
}

.col-2 { flex: 0 0 16.666%; max-width: 16.666%; padding: 0 10px; }
.col-3 { flex: 0 0 25%; max-width: 25%; padding: 0 10px; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 10px; }
.col-6 { flex: 0 0 50%; max-width: 50%; padding: 0 10px; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; padding: 0 10px; }
.col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 10px; }

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.main-header {
    background: linear-gradient(135deg, var(--rcys-black), var(--rcys-black-light));
    border-bottom: 2px solid var(--rcys-red);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--rcys-white);
}

.logo-text span {
    color: var(--rcys-red);
}

.main-nav {
    display: flex;
    gap: 5px;
}

.main-nav a {
    padding: 10px 20px;
    color: var(--rcys-white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    background: rgba(196, 30, 58, 0.3);
    color: var(--rcys-red-light);
}

.main-nav a.active {
    background: var(--rcys-red);
    color: var(--rcys-white);
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-name {
    color: var(--rcys-silver);
    font-size: 13px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

/* ==========================================
   CHROME EFFECTS
   ========================================== */
.chrome-outline {
    border: 1px solid var(--rcys-red);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 0 2px var(--chrome-glow),
        inset 0 1px 2px var(--chrome-highlight),
        inset 0 -1px 2px var(--chrome-shadow),
        0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.chrome-outline-subtle {
    border: 1px solid var(--rcys-red);
    box-shadow: 
        inset 0 1px 2px var(--chrome-highlight),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Shine overlay effect */
.shine-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, var(--shine-overlay) 0%, transparent 100%);
    pointer-events: none;
    border-radius: inherit;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
}

.page-header h1 {
    margin: 0 0 5px 0;
    font-size: 28px;
    color: var(--rcys-white);
}

.page-header p {
    margin: 0;
    color: var(--rcys-silver);
    font-size: 14px;
}

/* ==========================================
   TABLES
   ========================================== */
/* Table Styles */
.rcys-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: #1e1e1e;
    border-radius: 6px;
    overflow: hidden;
}

.rcys-table thead th {
    background: #161616;
    border-bottom: 2px solid var(--rcys-red);
    color: #999999;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.rcys-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #2a2a2a;
    color: #d3d3d3;
}

.rcys-table tbody tr {
    background: #1e1e1e;
}

.rcys-table tbody tr:nth-child(even) {
    background: #262626;
}

.rcys-table tbody tr:hover {
    background: #333333;
}

.rcys-table tbody tr:last-child td {
    border-bottom: none;
}

.rcys-table tbody tr.selected {
    background: rgba(196, 30, 58, 0.2);
}

.rcys-table.table-sm th,
.rcys-table.table-sm td {
    padding: 8px 12px;
    font-size: 13px;
}

.rcys-table.table-compact th,
.rcys-table.table-compact td {
    padding: 6px 10px;
    font-size: 12px;
}
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--rcys-red);
    color: var(--rcys-white);
    box-shadow: 
        inset 0 1px 2px var(--chrome-highlight),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--rcys-red-hover);
    transform: translateY(-2px);
    box-shadow: 
        inset 0 1px 3px var(--chrome-highlight),
        inset 0 -1px 3px rgba(0, 0, 0, 0.3),
        0 6px 16px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--rcys-red);
    border: 1px solid var(--rcys-red);
}

.btn-secondary:hover {
    background: var(--rcys-red);
    color: var(--rcys-white);
}

.btn-success {
    background: var(--status-success);
    color: var(--rcys-white);
}

.btn-success:hover {
    background: #3d8b40;
}

.btn-warning {
    background: var(--status-warning);
    color: var(--rcys-black);
}

.btn-danger {
    background: var(--status-error);
    color: var(--rcys-white);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 11px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 10px;
}

/* ==========================================
   FORMS
   ========================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--rcys-red);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--rcys-red);
    border-radius: 5px;
    color: var(--rcys-white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--rcys-red-light);
    box-shadow: 0 0 0 2px var(--chrome-glow);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Select styling */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c41e3a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
}

select.form-control option {
    background: var(--rcys-black);
    color: var(--rcys-white);
}

/* File input */
.form-control-file {
    padding: 8px;
    border: 2px dashed var(--rcys-red);
    border-radius: 5px;
    background: rgba(196, 30, 58, 0.1);
    cursor: pointer;
}

.form-control-file:hover {
    background: rgba(196, 30, 58, 0.2);
}

/* Checkbox and Radio */
.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.form-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--rcys-red);
}

.form-check-label {
    color: var(--rcys-white);
    font-size: 14px;
}

/* Inline form */
.form-inline {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.form-inline .form-group {
    margin-bottom: 0;
}

/* ==========================================
   CARDS
   ========================================== */
.card {
    background: linear-gradient(135deg, var(--rcys-black-light), var(--rcys-black-lighter));
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--rcys-red);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 2px var(--chrome-highlight),
        inset 0 -1px 2px var(--chrome-shadow),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.card-header {
    font-size: 18px;
    font-weight: bold;
    color: var(--rcys-red);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-body {
    color: var(--rcys-white);
}

.card-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(196, 30, 58, 0.3);
}

/* Stat cards */
.stat-card {
    text-align: center;
    padding: 25px;
}

.stat-card .stat-value {
    font-size: 42px;
    font-weight: bold;
    color: var(--rcys-red);
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--rcys-silver);
    margin-top: 5px;
    letter-spacing: 1px;
}

/* ==========================================
   ALERTS
   ========================================== */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid;
    position: relative;
    overflow: hidden;
}

.alert-success {
    background: rgba(76, 175, 80, 0.2);
    border-color: var(--status-success);
    color: var(--status-success);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.2);
    border-color: var(--status-warning);
    color: var(--status-warning);
}

.alert-error {
    background: rgba(244, 67, 54, 0.2);
    border-color: var(--status-error);
    color: var(--status-error);
}

.alert-info {
    background: rgba(33, 150, 243, 0.2);
    border-color: var(--status-info);
    color: var(--status-info);
}

/* ==========================================
   TABS
   ========================================== */
.nav-tabs {
    display: flex;
    border-bottom: 2px solid var(--rcys-red);
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.nav-tab {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    color: var(--rcys-white);
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.nav-tab:hover {
    background: rgba(196, 30, 58, 0.2);
}

.nav-tab.active {
    background: var(--rcys-red);
    color: var(--rcys-white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ==========================================
   BADGES
   ========================================== */
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.badge-success {
    background: var(--status-success);
    color: white;
}

.badge-warning {
    background: var(--status-warning);
    color: black;
}

.badge-error {
    background: var(--status-error);
    color: white;
}

.badge-info {
    background: var(--status-info);
    color: white;
}

.badge-grey {
    background: var(--rcys-silver-dark);
    color: white;
}

.badge-red {
    background: var(--rcys-red);
    color: white;
}

/* ==========================================
   MODALS
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: linear-gradient(135deg, var(--rcys-black), var(--rcys-black-light));
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--rcys-red);
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 0 0 3px var(--chrome-glow),
        inset 0 1px 3px var(--chrome-highlight),
        inset 0 -1px 3px var(--chrome-shadow),
        0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.modal-lg {
    max-width: 900px;
}

.modal-header {
    font-size: 22px;
    font-weight: bold;
    color: var(--rcys-red);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
}

.modal-body {
    color: var(--rcys-white);
}

.modal-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(196, 30, 58, 0.3);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--rcys-white);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--rcys-red);
}

/* ==========================================
   PROGRESS BAR
   ========================================== */
.progress {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--rcys-red);
    transition: width 0.3s ease;
}

/* ==========================================
   SCENARIO COMPARISON GRID
   ========================================== */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.scenario-card {
    background: linear-gradient(135deg, var(--rcys-black-light), var(--rcys-black-lighter));
    border-radius: 10px;
    border: 1px solid var(--rcys-silver-dark);
    overflow: hidden;
    transition: all 0.3s ease;
}

.scenario-card:hover {
    border-color: var(--rcys-red);
    transform: translateY(-2px);
}

.scenario-card.selected {
    border-color: var(--rcys-red);
    border-width: 2px;
    box-shadow: 0 0 20px var(--chrome-glow);
}

.scenario-card-header {
    background: var(--rcys-black);
    padding: 15px;
    border-bottom: 1px solid var(--rcys-silver-dark);
}

.scenario-card-header h3 {
    margin: 0;
    color: var(--rcys-white);
    font-size: 16px;
}

.scenario-card-body {
    padding: 15px;
}

/* ==========================================
   TEAM ROSTER VIEW
   ========================================== */
.team-column {
    background: var(--rcys-black-light);
    border-radius: 8px;
    border: 1px solid var(--rcys-silver-dark);
    overflow: hidden;
}

.team-header {
    padding: 15px;
    background: var(--rcys-black);
    border-bottom: 2px solid;
}

.team-header h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.team-header .team-stats {
    font-size: 12px;
    color: var(--rcys-silver);
}

.team-roster {
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 5px;
    cursor: grab;
    transition: all 0.2s ease;
}

.player-item:hover {
    background: rgba(196, 30, 58, 0.2);
}

.player-item.dragging {
    opacity: 0.5;
}

.player-item .player-name {
    font-weight: 500;
}

.player-item .player-info {
    font-size: 11px;
    color: var(--rcys-silver);
}

/* ==========================================
   DRAG AND DROP
   ========================================== */
.drop-zone {
    min-height: 50px;
    border: 2px dashed transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.drop-zone.drag-over {
    border-color: var(--rcys-red);
    background: rgba(196, 30, 58, 0.1);
}

/* ==========================================
   LOADING SPINNER
   ========================================== */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--rcys-silver);
    border-top-color: var(--rcys-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.loading-overlay .spinner {
    width: 50px;
    height: 50px;
    border-width: 4px;
}

.loading-overlay p {
    margin-top: 20px;
    color: var(--rcys-white);
}

/* ==========================================
   CONFIDENCE INDICATORS
   ========================================== */
.confidence-high {
    color: var(--status-success);
}

.confidence-medium {
    color: var(--status-warning);
}

.confidence-low {
    color: var(--status-error);
}

.confidence-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.confidence-dot.high { background: var(--status-success); }
.confidence-dot.medium { background: var(--status-warning); }
.confidence-dot.low { background: var(--status-error); }

/* ==========================================
   UTILITIES
   ========================================== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.text-red { color: var(--rcys-red); }
.text-white { color: var(--rcys-white); }
.text-silver { color: var(--rcys-silver); }
.text-success { color: var(--status-success); }
.text-warning { color: var(--status-warning); }
.text-error { color: var(--status-error); }

.bg-black { background-color: var(--rcys-black); }
.bg-red { background-color: var(--rcys-red); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mr-1 { margin-right: 10px; }
.ml-1 { margin-left: 10px; }

.p-0 { padding: 0; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }

.w-100 { width: 100%; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
    .col-8, .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-tabs {
        flex-direction: column;
    }
    
    .rcys-table {
        font-size: 13px;
    }
    
    .rcys-table th,
    .rcys-table td {
        padding: 8px;
    }
    
    .card {
        padding: 15px;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col, .col-2, .col-3, .col-4, .col-6, .col-8, .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .scenario-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .main-header,
    .main-nav,
    .btn,
    .no-print {
        display: none !important;
    }
    
    .card {
        border: 1px solid #ccc;
        box-shadow: none;
        background: white;
    }
    
    .rcys-table {
        border: 1px solid #ccc;
}

/* ==========================================

/* ==========================================


/* =====================================================
   SEASON SELECTOR - Add to end of style.css
   ===================================================== */

.season-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid #444;
}

.season-selector label {
    color: var(--rcys-silver);
    font-size: 0.875rem;
    white-space: nowrap;
}

.season-selector select {
    background-color: var(--rcys-black-lighter);
    border: 1px solid #444;
    color: var(--rcys-white);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    min-width: 150px;
    cursor: pointer;
}

.season-selector select:hover {
    border-color: #666;
}

.season-selector select:focus {
    border-color: var(--rcys-red);
    outline: none;
    box-shadow: 0 0 0 2px rgba(196, 30, 58, 0.25);
}

.season-selector select option {
    background-color: var(--rcys-black-lighter);
    color: var(--rcys-white);
}

/* Adjust header layout for season selector */
.main-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .season-selector {
        order: 3;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        width: 100%;
        justify-content: center;
        padding-top: 0.5rem;
        border-top: 1px solid #444;
    }
}
