﻿/* ===== CONSOLIDATED STYLESHEET ===== */
/* Combines BUCSResultsStyle.css and BUCSStyleresultsall.css */
/* Version: 1.0 */

/* ===== 1. RESET & BASE STYLES ===== */
body {
    /* Background settings */
    background-image: url('../Images/medals_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    /* Smooth background transition when resizing */
    transition: background 0.5s ease;
    /* Ensure full height */
    min-height: 100vh;
    /* Typography */
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    /* Content spacing */
    margin: 0;
    padding: 20px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0em;
}

h1, h2, h3, h4 {
    color: #ffd700; /* Gold */
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

h4 {
    color: yellow;
}

/* ===== 2. LAYOUT & CONTAINERS ===== */
/* Semi-transparent overlay for better readability */
.content-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    padding: 30px;
    margin: 20px auto;
    max-width: 90%;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

.updating .content-overlay {
    opacity: 0.5;
}

/* Podium Grid Layout */
.podium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.podium-category {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.category-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.category-title {
    color: #ffd700;
    font-size: 1.4em;
    margin: 0;
}

/* ===== 3. PODIUM POSITIONS & MEDALS ===== */
.podium-position {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
    border-radius: 5px;
    gap: 15px; /* Consistent spacing */
}

.position-1 {
    background: linear-gradient(to right, rgba(255, 215, 0, 0.2), transparent);
    border-left: 4px solid #ffd700;
}

.position-2 {
    background: linear-gradient(to right, rgba(192, 192, 192, 0.2), transparent);
    border-left: 4px solid #c0c0c0;
}

.position-3 {
    background: linear-gradient(to right, rgba(205, 127, 50, 0.2), transparent);
    border-left: 4px solid #cd7f32;
}

.position-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* Increased width */
    position: relative;
}

.medal {
    font-size: 1.0em;
    margin-right: 8px; /* Space between medal and number */
}

/* Medal colors for TT category */
.tt-category .position-1 .medal {
    color: gold;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.tt-category .position-2 .medal {
    color: silver;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.tt-category .position-3 .medal {
    color: #cd7f32; /* bronze */
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.position-number-text {
    font-weight: bold;
    font-size: 1.0em;
}

.position-details {
    flex: 1;
    min-width: 0; /* Prevent overflow */
}

.rider-name {
    font-weight: bold;
    font-size: 1.4em;
}

.rider-time {
    opacity: 0.8;
    font-size: 1.2em;
    font-weight: bold;
}

.rider-team {
    font-style: italic;
    font-weight: bold;
    font-size: 1.2em;
    opacity: 0.7;
}

.speed {
    font-size: 0.8em;
    opacity: 0.8;
    margin-left: 5px;
    white-space: nowrap;
}

.time-difference {
    font-size: 0.9em;
    color: #ccc;
    margin-left: 28px;
    white-space: nowrap;
}

/* ===== 4. STATUS BRACKET & MESSAGES (Race Control) ===== */
/* The Main Bracket */
.status-header-box {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    border-left: 5px solid #ffd700;
    /* Stack the rows vertically */
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* The Individual Gender Rows */
.status-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    width: 100%;
}

/* Optional: A subtle line between Men and Women */
.status-divider {
    height: 1px;
    background: rgba(255, 215, 0, 0.2); /* Faint Gold line */
    width: 80%;
    margin: 0 auto;
}

/* Ensure empty labels don't take up space */
.status-message:empty {
    display: none;
}

/* Base Styles for Status Messages */
.status-message {
    display: inline-block;
    font-family: sans-serif;
    font-weight: 600; /* Bumped to 600 so small text stays sharp against blur */
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 4px;
    /* THE BLUR EFFECT */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* Required for Safari support */
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Update the specific status backgrounds to be slightly more opaque */
.status-complete {
    color: #00FF00 !important;
    background-color: rgba(0, 50, 0, 0.4); /* Darker, more opaque green */
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.status-pending {
    color: #FF0000 !important;
    background-color: rgba(50, 0, 0, 0.4); /* Darker, more opaque red */
    border: 1px solid rgba(255, 0, 0, 0.3);
    animation: pulse-red 1.5s ease-in-out infinite;
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 0px rgba(255, 0, 0, 0);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 12px rgba(255, 0, 0, 0.8);
        color: #FF3333;
    }
}

/* ===== 5. GRIDVIEW & RESULTS TABLE ===== */
/* Scrollable Container */
.gridview-container {
    height: 60vh;
    overflow-y: auto;
    margin: 20px 0;
    border: 1px solid #444;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
}

    /* Custom scrollbar */
    .gridview-container::-webkit-scrollbar {
        width: 10px;
    }

    .gridview-container::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 5px;
    }

    .gridview-container::-webkit-scrollbar-thumb {
        background: #ffd700;
        border-radius: 5px;
    }

        .gridview-container::-webkit-scrollbar-thumb:hover {
            background: #ffed4a;
        }

/* Results Table */
.results-gridview {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    background-color: transparent; /* Set to transparent so row colors pop */
    font-size: 14px;
}

    .results-gridview th {
        position: sticky;
        top: 0;
        z-index: 10;
        background: linear-gradient(135deg, #b51c25 0%, #8a151c 100%);
        color: #ffd700;
        padding: 12px 10px;
        text-align: left;
        font-weight: bold;
        font-size: 16px;
        border-bottom: 2px solid #ffd700;
        white-space: nowrap;
    }

    .results-gridview td {
        padding: 10px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
        font-weight: bold;
        font-size: 14px;
        text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    }

/* ===== 6. GENDER & MEDAL ROW STYLING ===== */
/* Female Background - Targets any row with data-gender="F" */
tr[data-gender="F"] td {
    background-color: rgba(0, 200, 80, 0.45) !important;
}

tr[data-gender="F"]:hover td {
    background-color: rgba(0, 200, 80, 0.65) !important;
}

/* Male Background - Targets any row with data-gender="M" */
tr[data-gender="M"] td {
    background-color: rgba(255, 215, 0, 0.5) !important;
}

tr[data-gender="M"]:hover td {
    background-color: rgba(255, 215, 0, 0.7) !important;
}

/* Medal winner row styles - nuclear option */
tr.medal-row.gold-medal,
tr.medal-row.gold-medal td {
    background-color: #FFD700 !important;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

tr.medal-row.silver-medal,
tr.medal-row.silver-medal td {
    background-color: #C0C0C0 !important;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

tr.medal-row.bronze-medal,
tr.medal-row.bronze-medal td {
    background-color: #CD7F32 !important;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

/* Text styling for medal rows */
tr.medal-row td {
    font-size: 1.1em !important;
    color: #000 !important;
}

/* Hover states for medal rows */
tr.medal-row:hover td {
    background-color: inherit !important;
    filter: brightness(95%) !important;
}

/* GOLD - Largest & Tallest */
tr.row-gold td {
    background: linear-gradient(90deg, #FFD700 0%, #FFF2A1 50%, #FFD700 100%) !important;
    color: #000 !important;
    font-weight: 800; /* Extra bold */
    font-size: 19px; /* Significantly larger */
    padding: 18px 10px !important; /* Makes the row much taller */
    border-bottom: 2px solid #D4AF37 !important;
    text-shadow: none !important; /* Remove dark shadow for better legibility on gold */
}

/* SILVER - Mid-Size */
tr.row-silver td {
    background: linear-gradient(90deg, #C0C0C0 0%, #E8E8E8 50%, #C0C0C0 100%) !important;
    color: #000 !important;
    font-weight: 700;
    font-size: 17px; /* Step down from gold */
    padding: 15px 10px !important; /* Medium height */
    border-bottom: 2px solid #A9A9A9 !important;
    text-shadow: none !important;
}

/* BRONZE - Slightly larger than standard */
tr.row-bronze td {
    background: linear-gradient(90deg, #8B4513 0%, #CD7F32 50%, #8B4513 100%) !important;
    color: #000 !important;
    font-weight: 700;
    font-size: 15px; /* Just above the base 14px */
    padding: 12px 10px !important; /* Slightly taller than standard */
    border-bottom: 2px solid #5D2E0A !important;
    text-shadow: none !important;
}

/* ===== 7. NON-FINISHER STYLING ===== */
tr.row-nonfinisher td {
    font-weight: normal;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8) !important; /* Slightly faded text */
}

/* Optional: Dim the background slightly more for non-finishers */
tr.row-nonfinisher[data-gender="F"] td {
    background-color: rgba(0, 200, 80, 0.25) !important;
}

tr.row-nonfinisher[data-gender="M"] td {
    background-color: rgba(255, 215, 0, 0.3) !important;
}

/* ===== 8. RANK CELL & ICON STYLES ===== */
.rank-cell {
    text-align: left;
    white-space: nowrap;
}

    /* Star icon styling for road bike winners */
    .rank-cell i.fa-star {
        margin-right: 5px;
        text-shadow: 1px 1px 2px black;
    }

    /* Ensure medal icons maintain gold/silver/bronze colors */
    .rank-cell i.fa-medal,
    .rank-cell i.fa-trophy {
        margin-right: 5px;
        text-shadow: 1px 1px 2px black;
    }

    /* Specific color overrides for bronze star (since bronze isn't a standard star color) */
    .rank-cell i.fa-star[style*="color: #cd7f32"] {
        color: #cd7f32 !important;
    }

    /* Ensure all rank icons have proper spacing */
    .rank-cell i {
        margin-right: 5px;
    }

/* FontAwesome icon enhancements */
.results-gridview .fas,
.results-gridview .far {
    /* Horizontal, Vertical, Blur, Color */
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.6));
    margin-right: 5px; /* Adds a tiny bit of breathing room from the text */
    vertical-align: middle;
}

/* Extra punch for the Gold Row icons */
tr.row-gold .fas {
    filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.7));
    font-size: 1.2em; /* Makes the icon slightly bigger than the text in the gold row */
}

/* Specific styling for Star icons if they are used for Para or Special mentions */
.fa-star {
    filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.5)); /* Outer glow effect */
}

/* Bike type icons */
.fa-road {
    color: #4CAF50; /* Green for road bikes */
}

.fa-clock {
    color: #2196F3; /* Blue for TT bikes */
}

/* ===== 9. HEADER & PAGE HEADER ===== */
.page-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid #ffd700;
}

    .page-header h1, .page-header h2, .page-header h3 {
        color: #ffd700 !important;
        border-bottom: none;
        padding: 0;
    }

    .page-header h1 {
        font-size: 1.8em;
        margin: 0 0 5px 0;
    }

    .page-header h2 {
        font-size: 1.3em;
        margin: 10px 0 0 0;
    }

    .page-header h3 {
        font-size: 1.1em;
        margin: 0;
    }

/* ===== 10. FOOTER & UPDATE TIMES ===== */
.update-time {
    text-align: right;
    font-size: 0.9em;
    color: #aaa;
    padding-right: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .update-time i {
        color: #ffd700; /* Gold color for the icon */
    }

/* Footer container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 5px 0;
    font-size: 0.9em;
}

/* Left-aligned message */
.footer-message {
    color: gold !important;
    font-weight: bold !important;
    flex: 1;
    padding-right: 20px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    color: gold !important;
    font-weight: bold !important;
}

/* ===== 11. LOADER & ANIMATIONS ===== */
#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
    font-size: 3em;
    color: #ffd700;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* Fade-in animation for content */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 12. RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-message {
        padding-right: 0;
    }
}

/* ===== 13. UTILITY CLASSES ===== */
.category-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
}

.error-message {
    color: #ff6b6b;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    display: block;
    margin: 10px 0;
}

.hide-on-narrow {
    /* For responsive hiding if needed */
}


/* ====++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++=== 14. INDIVIDUAL PAGE SPECIFIC STYLES ===== */

/* Filter bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    margin-bottom: 0.9rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.filter-group-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.7;
    white-space: nowrap;
}

/* Pills rendered by RadioButtonList */
.filter-buttons table {
    border-spacing: 0;
    border-collapse: collapse;
}

.filter-buttons td {
    padding: 0 4px 0 0;
}

.filter-buttons input[type="radio"] {
    display: none;
}

.filter-buttons label {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .filter-buttons label:hover {
        background: rgba(255,255,255,0.2);
        border-color: #ffd700;
    }

.filter-buttons input[type="radio"]:checked + label {
    background: #ffd700;
    color: #000;
    border-color: #ffd700;
    font-weight: bold;
    cursor: default;
}

/* Results meta — chip + status on one line */
.results-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.active-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.35);
    border-radius: 20px;
    padding: 0.25rem 0.85rem;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

    .active-filter-chip i {
        color: gold;
    }

.results-meta .status-message {
    margin: 0;
    font-size: 0.85rem;
}

/* Section headers */
.bike-section {
    margin-bottom: 2rem;
}

.bike-section-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 0.4rem;
    margin-bottom: 0.9rem;
}

    .bike-section-header h2 {
        margin: 0;
        font-size: 1.25rem;
    }

/* Dual podium row (ALL mode) — two halves side by side */
.dual-podium-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.4rem;
    align-items: flex-start;
}

.dual-podium-half {
    flex: 1 1 0;
    min-width: 0;
}

/* Race number styling */
.race-number {
    color: green;
    font-size: 1.1em;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
}

/* Medal / star glows */
.position-1 .medal i {
    text-shadow: 0 0 6px #ffd700, 0 0 14px #ffd700, 0 0 28px #ffd700aa;
}

.position-2 .medal i {
    text-shadow: 0 0 6px #c0c0c0, 0 0 14px #c0c0c0, 0 0 28px #c0c0c0aa;
}

.position-3 .medal i {
    text-shadow: 0 0 6px #cd7f32, 0 0 14px #cd7f32, 0 0 28px #cd7f32aa;
}

/* No-results notice — compact inline */
.no-results-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.7rem;
    font-size: 0.88rem;
    opacity: 0.55;
}

    .no-results-notice i {
        font-size: 0.95rem;
        flex-shrink: 0;
    }

/* Full results table section */
.full-results-section {
    margin-top: 1rem;
}

    .full-results-section h3 {
        font-size: 0.9rem;
        opacity: 0.75;
        margin: 0 0 0.45rem 0;
    }

.results-table-wrap {
    overflow-x: auto;
}

table.results-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

    table.results-table thead th {
        background: rgba(255,255,255,0.10);
        padding: 0.5rem 0.8rem;
        text-align: left;
        font-weight: 600;
        white-space: nowrap;
        border-bottom: 2px solid rgba(255,255,255,0.2);
    }

    table.results-table tbody tr:nth-child(even) {
        background: rgba(255,255,255,0.04);
    }

    table.results-table tbody tr:hover {
        background: rgba(255,215,0,0.07);
    }

    table.results-table td {
        padding: 0.42rem 0.8rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        white-space: nowrap;
    }

/* Position colors */
.pos-gold {
    color: gold;
    font-weight: 700;
}

.pos-silver {
    color: silver;
    font-weight: 700;
}

.pos-bronze {
    color: #cd7f32;
    font-weight: 700;
}

/* Bike badges */
.badge-rb {
    background: #2e7d32;
    color: #fff;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.72rem;
    font-weight: 700;
}

.badge-tt {
    background: #6a1b9a;
    color: #fff;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* Non-finishers section */
.dns-section {
    margin-top: 1rem;
    border-top: 1px dashed rgba(255,255,255,0.15);
    padding-top: 0.9rem;
}

    .dns-section h3 {
        font-size: 0.9rem;
        opacity: 0.6;
        margin: 0 0 0.45rem 0;
        font-weight: 600;
        letter-spacing: 0.03em;
    }

table.results-table.dns-table tbody tr {
    opacity: 0.7;
}

    table.results-table.dns-table tbody tr:hover {
        opacity: 1;
    }

.dns-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 6px;
    letter-spacing: 0.06em;
    vertical-align: middle;
}

    .dns-badge.dns {
        background: rgba(150,150,150,0.25);
        color: #bbb;
        border: 1px solid rgba(150,150,150,0.4);
    }

    .dns-badge.dnf {
        background: rgba(230,140,0,0.2);
        color: #f0a030;
        border: 1px solid rgba(230,140,0,0.4);
    }

    .dns-badge.dq {
        background: rgba(200,50,50,0.2);
        color: #e06060;
        border: 1px solid rgba(200,50,50,0.4);
    }

td.status-dns {
    color: #999;
}

td.status-dnf {
    color: #f0a030;
    font-weight: 600;
}

td.status-dq {
    color: #e06060;
    font-weight: 600;
}

/* DNS/DNF/DQ totals footer */
.dns-totals {
    font-size: 0.78rem;
    opacity: 0.6;
    margin-top: 0.45rem;
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

    .dns-totals span {
        white-space: nowrap;
    }

/* Loading indicator position override */
#loader {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.65);
    color: gold;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    z-index: 999;
    display: none;
}

/* Podium row highlight overrides */
tr.pos-gold td {
    background: linear-gradient(90deg, #FFD700 0%, #FFF2A1 50%, #FFD700 100%) !important;
    color: #000 !important;
    font-weight: 800;
    font-size: 19px;
    padding: 18px 10px !important;
    border-bottom: 2px solid #D4AF37 !important;
    text-shadow: none !important;
}

tr.pos-silver td {
    background: linear-gradient(90deg, #C0C0C0 0%, #E8E8E8 50%, #C0C0C0 100%) !important;
    color: #000 !important;
    font-weight: 700;
    font-size: 17px;
    padding: 15px 10px !important;
    border-bottom: 2px solid #A9A9A9 !important;
    text-shadow: none !important;
}

tr.pos-bronze td {
    background: linear-gradient(90deg, #8B4513 0%, #CD7F32 50%, #8B4513 100%) !important;
    color: #000 !important;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 10px !important;
    border-bottom: 2px solid #5D2E0A !important;
    text-shadow: none !important;
}

/* Responsive adjustments for individual page */
@media (max-width: 640px) {
    .filter-bar {
        flex-wrap: wrap;
    }

    .dual-podium-row {
        flex-direction: column;
    }

    table.results-table {
        font-size: 0.8rem;
    }

        table.results-table td,
        table.results-table th {
            padding: 0.3rem 0.4rem;
        }
}


/* ====++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++=== 14. INDIVIDUAL PAGE SPECIFIC STYLES ENDS ===== */
