/* ========================================================================
   VS Footy Stats — Desktop Matches Page
   Adapted from the app's StatsPage.vue design for wider screens
   Base/shared styles are in shared.css
   ======================================================================== */

/* ── Filter bar (search + dropdowns) ── */
.vfs-filter-bar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 10px 0;
    position: sticky;
    top: calc(var(--header-h) + 53px); /* header + date tabs */
    z-index: 9999;
}
.vfs-filter-bar__row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.vfs-filter-bar__search {
    flex: 1;
    min-width: 0;
}
.vfs-search-input {
    width: 100%;
    padding: 9px 14px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    background: #f6f8fa;
    color: #1a1a2e;
    outline: none;
    transition: border-color 0.15s;
    font-family: inherit;
}
.vfs-search-input:focus {
    border-color: #4A7FFF;
}
.vfs-search-input::placeholder {
    color: #999;
}

/* ── Dropdown toggle buttons ── */
.vfs-dropdown {
    position: relative;
    flex-shrink: 0;
}
.vfs-dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    background: #f6f8fa;
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.15s;
}
.vfs-dropdown__toggle:hover {
    border-color: rgba(0,0,0,0.25);
}
.vfs-dropdown__toggle--active {
    border-color: #8CD652;
    background: rgba(140,214,82,0.08);
    color: #4a8a1a;
}
.vfs-dropdown__chevron {
    font-size: 0.65rem;
    color: #999;
    transition: transform 0.2s;
}
.vfs-dropdown__toggle--active .vfs-dropdown__chevron {
    transform: rotate(180deg);
}
.vfs-dropdown__panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 320px;
    max-height: 70vh;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 16px;
    z-index: 100;
}
.vfs-dropdown__panel::-webkit-scrollbar {
    width: 4px;
}
.vfs-dropdown__panel::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
}

/* ── Date tabs ── */
.vfs-date-tabs-wrap {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: sticky;
    top: var(--header-h);
    z-index: 10000;
}
.vfs-date-tabs {
    display: flex;
}
.vfs-date-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 4px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    color: #999;
    transition: color 0.15s;
    font-family: inherit;
}
.vfs-date-tab:hover {
    color: #666;
}
.vfs-date-tab--active {
    color: #1a1a2e;
}
.vfs-date-tab--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: #4A7FFF;
    border-radius: 3px 3px 0 0;
}
.vfs-date-tab__day {
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.3;
}
.vfs-date-tab__num {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
}

/* ── Filter strip (mobile toggle) ── */
.vfs-filter-strip {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 8px 0;
}
.vfs-filter-strip__inner {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vfs-filter-tags {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.vfs-ftag {
    font-size: 0.72rem;
    font-weight: 600;
    color: #666;
    background: #f0f2f5;
    padding: 3px 10px;
    border-radius: 6px;
}
.vfs-ftag--accent {
    background: rgba(248,81,73,0.1);
    color: #cf222e;
}
.vfs-ftag-plus {
    font-size: 0.72rem;
    color: #999;
    font-weight: 600;
}
.vfs-filter-cog {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1.5px solid rgba(0,0,0,0.12);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.15s;
}
.vfs-filter-cog:hover {
    border-color: rgba(0,0,0,0.25);
}
.vfs-filter-cog--on {
    background: #4A7FFF;
    border-color: #4A7FFF;
    color: #fff;
}

/* ── Layout: sidebar + main ── */
.vfs-layout {
    display: flex;
    gap: 0;
}

/* ── Sidebar (filter panel) ── */
.vfs-sidebar {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ── Collapsible sections ── */
.vfs-section {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.vfs-section:last-child {
    border-bottom: none;
}
.vfs-section__head {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.1s;
}
.vfs-section__head:hover {
    background: rgba(0,0,0,0.02);
}
.vfs-section__title {
    flex: 1;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}
.vfs-section__arrow {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: #999;
    transition: transform 0.2s;
    transform: rotate(90deg);
}
.vfs-section--collapsed .vfs-section__arrow {
    transform: rotate(0deg);
}
.vfs-section__body {
    padding: 0 16px 12px;
}
.vfs-section--collapsed .vfs-section__body {
    display: none;
}

/* ── Clickable filter list ── */
.vfs-fl {
    list-style: none;
    margin: 0;
    padding: 0;
}
.vfs-fl-item {
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.1s;
}
.vfs-fl-item:hover {
    background: rgba(0,0,0,0.04);
}
.vfs-fl-item--active {
    background: rgba(140, 214, 82, 0.15);
    color: #4a8a1a;
    font-weight: 700;
}
.vfs-fl-item--active:hover {
    background: rgba(140, 214, 82, 0.2);
}

/* ── Quick filter buttons ── */
.vfs-qf-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.vfs-qf-btn {
    padding: 5px 12px;
    border-radius: 8px;
    border: 1.5px solid rgba(0,0,0,0.1);
    background: transparent;
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.1s;
}
.vfs-qf-btn:hover {
    border-color: rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.03);
}
.vfs-qf-btn--active {
    background: rgba(140, 214, 82, 0.15);
    border-color: #8CD652;
    color: #4a8a1a;
    font-weight: 700;
}

/* ── Advanced filter sliders ── */
.vfs-adv__group {
    margin-bottom: 14px;
}
.vfs-adv__group:last-of-type {
    margin-bottom: 16px;
}
.vfs-adv__group-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #999;
    margin-bottom: 8px;
}
.vfs-slider {
    margin-bottom: 8px;
}
.vfs-slider__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
}
.vfs-slider__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
}
.vfs-slider__val {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1a1a2e;
    min-width: 30px;
    text-align: right;
}
.vfs-slider__input {
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    border-radius: 2px;
    outline: none;
}
.vfs-slider__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #8CD652;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.vfs-slider__input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #8CD652;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ── Saved filters ── */
.vfs-saved__list {
    margin-bottom: 10px;
}
.vfs-sf-item {
    display: flex;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.vfs-sf-item:last-child {
    border-bottom: none;
}
.vfs-sf-item__name {
    flex: 1;
    font-size: 0.82rem;
    font-weight: 500;
    color: #333;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vfs-sf-item__btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    font-family: inherit;
    transition: background 0.1s;
}
.vfs-sf-item__btn--load {
    color: #4A7FFF;
}
.vfs-sf-item__btn--load:hover {
    background: rgba(74,127,255,0.1);
}
.vfs-sf-item__btn--del {
    color: #cf222e;
}
.vfs-sf-item__btn--del:hover {
    background: rgba(207,34,46,0.1);
}
.vfs-saved__save-btn {
    width: 100%;
    padding: 8px;
    background: #f0f2f5;
    border: 1.5px dashed rgba(0,0,0,0.15);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}
.vfs-saved__save-btn:hover {
    border-color: #8CD652;
    color: #4a8a1a;
    background: rgba(140,214,82,0.08);
}
.vfs-saved__login {
    font-size: 0.78rem;
    color: #999;
    text-align: center;
    margin: 0;
}
.vfs-saved__login a {
    color: #4A7FFF;
    font-weight: 600;
    text-decoration: none;
}

/* ── Apply button (used in advanced section) ── */
.vfs-fp-apply {
    width: 100%;
    padding: 10px;
    background: #8CD652;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    color: #fff;
    font-family: inherit;
    transition: background 0.15s;
}
.vfs-fp-apply:hover {
    background: #6ebf2d;
}

/* ── Main feed column ── */
.vfs-main {
    flex: 1;
    min-width: 0;
}

/* ── Feed ── */
.vfs-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── League card ── */
.vfs-league-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}
.vfs-lc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f6f8fa;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background 0.1s;
}
.vfs-lc-header:hover {
    background: #eef1f5;
}
.vfs-lc-flag {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    flex-shrink: 0;
}
.vfs-lc-info {
    flex: 1;
    min-width: 0;
}
.vfs-lc-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vfs-lc-country {
    display: block;
    font-size: 0.68rem;
    color: #999;
    font-weight: 500;
}
.vfs-lc-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(0,0,0,0.06);
    color: #666;
    border-radius: 6px;
    padding: 2px 7px;
    flex-shrink: 0;
}
.vfs-lc-arrow {
    flex-shrink: 0;
    color: #999;
    font-size: 0.75rem;
}

/* ── Match item ── */
.vfs-mi {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: background 0.1s;
}
.vfs-mi:hover {
    background: rgba(0,0,0,0.015);
}
.vfs-mi:last-child {
    border-bottom: none;
}

.vfs-mi-time {
    font-size: 0.65rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 8px;
}

/* Teams row */
.vfs-mi-teams {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.vfs-mi-team {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.vfs-mi-team--away {
    /* No row-reverse — DOM order is: ppg, name, badge (left to right) */
    text-align: right;
}
.vfs-mi-team__text {
    flex: 1;
    min-width: 0;
}
.vfs-mi-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(0,0,0,0.04);
    flex-shrink: 0;
}
.vfs-mi-badge--ph {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0,0,0,0.06);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #999;
}
.vfs-mi-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vfs-mi-name--away {
    text-align: right;
}
.vfs-mi-club-link {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}
.vfs-mi-club-link:hover {
    color: #239954;
}
.vfs-mi-form {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    background: #f0f2f5;
    padding: 3px 6px;
    border-radius: 5px;
    flex-shrink: 0;
    min-width: 32px;
    text-align: center;
}
.vfs-mi-centre {
    flex-shrink: 0;
    min-width: 52px;
    text-align: center;
}
.vfs-mi-score {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: 1px;
}

/* Stat blocks — inline layout (value + label on one line) */
.vfs-mi-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

/* ── Empty state ── */
.vfs-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    gap: 1rem;
}
.vfs-empty__text {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* ── Skeleton loading ── */
.vfs-skeleton {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
}
.vfs-sk-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
}
.vfs-sk-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f6f8fa;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.vfs-sk-flag {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    flex-shrink: 0;
}
.vfs-sk-header-text {
    flex: 1;
}
.vfs-sk-row {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.vfs-sk-row:last-child {
    border-bottom: none;
}
.vfs-sk-time {
    width: 40px;
    height: 9px;
    margin: 0 auto 8px;
    border-radius: 3px;
}
.vfs-sk-teams {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.vfs-sk-team {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vfs-sk-team--away {
    justify-content: flex-end;
}
.vfs-sk-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}
.vfs-sk-vs {
    width: 36px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}
.vfs-sk-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.vfs-sk-stat {
    height: 30px;
    border-radius: 8px;
}
/* ======================================================================
   Desktop layout (1024px+): sidebar on left, feed on right
   ====================================================================== */
@media (min-width: 1024px) {
    /* Hide mobile filter strip on desktop */
    .vfs-filter-strip {
        display: none;
    }

    /* Sidebar + main side by side */
    .vfs-layout {
        gap: 20px;
        align-items: flex-start;
    }

    /* Sidebar: always visible, sticky, scrollable — clears both sticky bars */
    .vfs-sidebar {
        display: block;
        width: 260px;
        flex-shrink: 0;
        background: #ffffff;
        border-radius: 14px;
        border: 1px solid rgba(0,0,0,0.08);
        padding: 0;
        position: sticky;
        top: calc(var(--header-h) + 130px); /* header + date tabs + filter bar + gap */
        overflow: hidden;
        max-height: calc(100vh - var(--header-h) - 126px);
        overflow-y: auto;
    }

    /* Sidebar scrollbar */
    .vfs-sidebar::-webkit-scrollbar {
        width: 4px;
    }
    .vfs-sidebar::-webkit-scrollbar-thumb {
        background: rgba(0,0,0,0.15);
        border-radius: 2px;
    }

    .vfs-sidebar .vfs-fp-apply {
        margin: 0 16px 12px;
        width: calc(100% - 32px);
    }

    /* Compact match items */
    .vfs-mi {
        padding: 14px 16px;
    }
    .vfs-mi-teams {
        margin-bottom: 10px;
    }
    .vfs-mi-stats {
        max-width: 360px;
        margin: 0 auto;
    }
}

/* ── Mobile: hide sidebar, show filter strip ── */
@media (max-width: 1023px) {
    /* JS toggles display:block on mobile via filter cog */

    /* Search full width — stack filter bar items */
    .vfs-filter-bar__row {
        flex-wrap: wrap;
    }
    .vfs-filter-bar__search {
        flex-basis: 100%;
    }

    /* Advanced Filters + Saved Filters 50/50 */
    .vfs-dropdown {
        flex: 1;
        min-width: 0;
    }
    .vfs-dropdown__toggle {
        width: 100%;
        justify-content: center;
    }

    /* Prevent advanced/saved dropdown panels from being cropped */
    .vfs-dropdown__panel {
        position: fixed;
        top: auto;
        left: 8px;
        right: 8px;
        min-width: 0;
        max-width: none;
        max-height: 70vh;
        z-index: 10001;
    }

    /* Sidebar: fullscreen overlay when open */
    .vfs-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10002;
        background: #ffffff;
        overflow-y: auto;
        border-radius: 0;
        border: none;
        padding-top: 0;
    }

    /* Close button at top of fullscreen sidebar — sticky so always reachable */
    .vfs-sidebar__close {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        background: #f6f8fa;
        position: sticky;
        top: 0;
        z-index: 1;
    }
    .vfs-sidebar__close-title {
        font-size: 0.9rem;
        font-weight: 700;
        color: #1a1a2e;
    }
    .vfs-sidebar__close-btn {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        border: 1.5px solid rgba(0,0,0,0.12);
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.1rem;
        color: #666;
        line-height: 1;
    }
}

/* Hide close button on desktop */
@media (min-width: 1024px) {
    .vfs-sidebar__close {
        display: none;
    }
}

/* ── Tablet ── */
@media (min-width: 768px) and (max-width: 1023px) {
    .vfs-container {
        padding: 0 24px;
    }
    .vfs-mi-stats {
        max-width: 360px;
        margin: 0 auto;
    }
}

/* ========================================================================
   Flat view (By Time / In Play)
   ======================================================================== */
.vfs-flat-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.vfs-mi--flat .vfs-mi-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.vfs-mi-league-tag {
    font-size: 0.62rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
    text-align: center;
}
.vfs-mi-odds {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    flex-shrink: 0;
}
.vfs-odds {
    font-size: 0.68rem;
    color: #555;
    white-space: nowrap;
    background: #f0f2f5;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ========================================================================
   Detailed table view (with filters)
   ======================================================================== */
.vfs-detailed-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
}
.vfs-dt {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.72rem;
    white-space: nowrap;
}
.vfs-dt-th {
    padding: 8px 6px;
    background: #f6f8fa;
    font-weight: 600;
    color: #555;
    text-align: center;
    border-bottom: 2px solid rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1;
}
.vfs-dt-th--time { min-width: 50px; }
.vfs-dt-th--home,
.vfs-dt-th--away { min-width: 100px; text-align: left; }
.vfs-dt-th--score { min-width: 40px; }
.vfs-dt-th--odds { min-width: 90px; }
.vfs-dt-th--stat { min-width: 48px; }

.vfs-dt-row {
    cursor: pointer;
    transition: background 0.12s;
}
.vfs-dt-row:hover {
    background: #f0f5ff;
}
.vfs-dt-row:nth-child(even) {
    background: #fafbfc;
}
.vfs-dt-row:nth-child(even):hover {
    background: #f0f5ff;
}
.vfs-dt-td {
    padding: 7px 6px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.vfs-dt-td--time {
    color: #666;
    font-weight: 500;
}
.vfs-dt-td--home,
.vfs-dt-td--away {
    text-align: left;
    font-weight: 500;
    color: #1a1a2e;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vfs-dt-td--score {
    font-weight: 600;
    color: #333;
}
.vfs-dt-td--odds {
    font-size: 0.68rem;
    color: #666;
}
.vfs-dt-td--stat {
    font-size: 0.68rem;
    font-weight: 500;
}
/* Colour-coded stat cells in detailed view */
.vfs-dt-td--stat.vfs-sb--excellent { background: rgba(46,139,87,0.12); color: #1a6b3c; }
.vfs-dt-td--stat.vfs-sb--good { background: rgba(74,127,255,0.10); color: #2a5dc8; }
.vfs-dt-td--stat.vfs-sb--average { background: rgba(255,165,0,0.10); color: #b87a00; }
.vfs-dt-td--stat.vfs-sb--poor { background: rgba(200,50,50,0.08); color: #a33; }
.vfs-dt-td--stat.vfs-sb--muted { color: #bbb; }
