
.activity-chip {
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.activity-chip:hover {
    opacity: 1;
    transform: scale(1.05);
}

.activity-chip.active {
    opacity: 1;
    box-shadow: 0 0 0 2px #000 inset;
}

.chip {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 35px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s ease;
}

/* Active chip */
.chip.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Optional hover */
.chip:hover {
    opacity: 0.8;
    transform: scale(1.05);
}




body {
    background: #f4f6f9;
    font-family: system-ui, -apple-system, sans-serif;
}

.chip {
    padding: 6px 12px;
    border-radius: 20px;
    background: #e9ecef;
    font-size: 35px;
    cursor: pointer;
}

.chip.active {
    background: #212529;
    color: #fff;
}

.fixture-card {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.fixture-header {
    font-size: 25px;
    color: #4e759a;
}

.team {
    font-weight: 600;
    font-size: 45px;
}

.score {
    font-size: 35px;
    font-weight: bold;
}

.badge-result {
    font-size: 20px;
    margin-left: 5px;
}




/* Base scale */
body {
    background: #f4f6f9;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 16px; /* 🔥 bigger base */
}

/* Title */
h4 {
    font-size: 52px;
    font-weight: bold;
    margin-left: 45px;
    color: #2774b8;
}

/* Tabs */
.tab-btn {
    font-size: 30px;
    padding: 10px;
    border-radius: 10px;
}

/* Chips (BIG upgrade) */
.chip {
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 35px;
    font-weight: 500;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.chip.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Dropdowns */
.form-select {
    font-size: 35px;
    padding: 10px;
    border-radius: 10px;
}

/* Fixture cards */
.fixture-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Header (competition + date) */
.fixture-header {
    font-size: 25px;
    color: #4e759a;
}

/* Team names */
.team {
    font-weight: 700;
    font-size: 45px; /* 🔥 bigger */
}

/* Score */
.score {
    font-size: 35px;
    font-weight: 700;
}

/* Bottom row */
.fixture-card .small {
    font-size: 25px;
    color: #82bef9;
}

/* Result badges */
.badge {
    font-size: 20px;
    padding: 4px 6px;
}

#fixturesList {
    gap: 16px !important;
}

.form-select-modern {
    background-color: #f0f8ff;  /* soft light blue */
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 2.2rem;           /* matches your 35px scale */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border: 1px solid #c0c0c0;
    transition: all 0.2s ease;
}

.form-select-modern:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.25);
}

.form-select-modern option {
    padding: 8px 10px;
}