/* ============================================================
   1. COLOURS AND BASIC PAGE SETTINGS
   Change these variables to update colours across the whole site.
   ============================================================ */

:root {
    --navy: #061a46;
    --blue: #003d82;
    --light-blue: #0758b3;
    --orange: #f5a000;
    --green: #0a9c58;
    --text: #14213d;
    --muted-text: #6b7487;
    --border: #dce2eb;
    --light-background: #f2f5f9;
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: #e9edf3;
    color: var(--text);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 13px;
}

.app-width {
    max-width: 1180px;
}


/* ============================================================
   2. TOP HEADER, LOGO AND SPORT TABS
   ============================================================ */

.topbar {
    color: white;
    background: linear-gradient(135deg, var(--navy), #0b3271);
    box-shadow: 0 2px 14px rgba(0, 19, 52, 0.3);
}

.topbar-main {
    height: 58px;
}

.brand {
    display: flex;
    align-items: center;
    color: white;
    font-size: 19px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.7px;
    text-decoration: none;
}

.brand b {
    color: var(--orange);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    margin-right: 5px;
    border-radius: 50% 50% 45% 55%;
    color: var(--navy);
    background: var(--orange);
    font-style: normal;
    transform: rotate(-7deg);
}

.header-action {
    height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 5px;
    color: white;
    background: rgba(255, 255, 255, 0.07);
    font-size: 12px;
    font-weight: 700;
}

.header-action--accent {
    border-color: var(--orange);
    color: #17213a;
    background: var(--orange);
}

.sport-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 49px;
}

.sport-tab {
    position: relative;
    border: 0;
    border-bottom: 3px solid transparent;
    color: #bbc8de;
    background: transparent;
    font-size: 10px;
    font-weight: 600;
}

.sport-tab i {
    display: block;
    font-size: 18px;
    line-height: 20px;
}

.sport-tab em {
    position: absolute;
    top: 2px;
    margin-left: 1px;
    padding: 1px 4px;
    border-radius: 9px;
    color: white;
    background: #e8493f;
    font-size: 8px;
    font-style: normal;
}

.sport-tab.active {
    border-bottom-color: var(--orange);
    color: white;
}


/* ============================================================
   3. MAIN PAGE AND PROMOTION BANNER
   ============================================================ */

.page-shell {
    padding-top: 10px;
    padding-bottom: 115px;
}

.page-shell > .row {
    margin-right: 0;
    margin-left: 0;
}

.match-column {
    padding-right: 0;
    padding-left: 0;
}

.side-column {
    min-height: 0;
    max-height: 100%;
    padding-bottom: 18px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #9aa8bd transparent;
}

.side-column::-webkit-scrollbar {
    width: 6px;
}

.side-column::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #9aa8bd;
}

.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 13px 18px;
    overflow: hidden;
    border-radius: 9px;
    color: white;
    background: radial-gradient(circle at 75% 20%, #1468c4, #06326e 47%, #061b48);
}

.promo-banner small,
.promo-banner span {
    display: block;
    color: #c6d8ee;
    font-size: 10px;
}

.promo-banner strong {
    display: block;
    font-size: 17px;
    letter-spacing: 0.4px;
}

.promo-banner i {
    color: var(--orange);
    font-size: 55px;
    filter: drop-shadow(0 0 10px rgba(255, 196, 0, 0.45));
    transform: rotate(7deg);
}


/* ============================================================
   4. QUICK LEAGUE FILTER BUTTONS
   ============================================================ */

.quick-filters {
    display: flex;
    gap: 7px;
    margin: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.quick-filters::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    flex: 0 0 auto;
    padding: 7px 14px;
    border: 1px solid #cfd6e2;
    border-radius: 18px;
    color: #556074;
    background: white;
    font-size: 12px;
    font-weight: 700;
}

.filter-pill.active {
    border-color: var(--blue);
    color: white;
    background: var(--blue);
}

.live-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 3px;
    border-radius: 50%;
    background: #ef4c4c;
    box-shadow: 0 0 0 3px rgba(239, 76, 76, 0.15);
}


/* ============================================================
   5. MATCHES TITLE, DATE AND SEARCH CONTROLS
   ============================================================ */

.matches-panel {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: white;
}

.matches-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    border-bottom: 1px solid var(--border);
}

.matches-heading > div {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.matches-heading span {
    font-size: 15px;
    font-weight: 800;
}

.matches-heading small,
.matches-heading time {
    color: var(--muted-text);
    font-size: 13px;
}

.match-tools {
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 7px;
    padding: 7px;
    background: var(--light-background);
}

.match-tools label {
    display: flex;
    align-items: center;
    height: 32px;
    border: 1px solid #ccd4df;
    border-radius: 5px;
    color: #6a7487;
    background: white;
}

.match-tools i {
    padding-left: 9px;
}

.match-tools select,
.match-tools input {
    width: 100%;
    padding: 0 7px;
    border: 0;
    outline: 0;
    color: #354057;
    background: transparent;
    font-size: 11px;
}


/* ============================================================
   6. COMPACT MATCH TABLE

   Column order:
   Time | Home | Score/VS | Away | 1 | X | 2 | More
   ============================================================ */

.league-block {
    border-bottom: 5px solid #e8edf3;
}

.league-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 28px;
    padding: 0 8px;
    color: white;
    background: linear-gradient(90deg, #073c78, #075399);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1px;
}

.league-title div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.league-title i {
    font-size: 12px;
}

.league-title button {
    border: 0;
    color: #c8daf0;
    background: transparent;
    font-size: 14px;
}

.odds-labels,
.match-row {
    display: grid;
    grid-template-columns: 37px minmax(48px, 1fr) 25px minmax(48px, 1fr) repeat(3, 43px) 28px;
    align-items: center;
    gap: 3px;
}

.odds-labels {
    height: 22px;
    padding: 0 4px;
    color: #687286;
    background: #edf1f6;
    font-size: 9px;
    text-align: center;
}

.match-row {
   /* min-height: 49px;*/
    padding: 3px 4px;
    border-top: 1px solid #e1e5eb;
}

.match-row:nth-child(odd) {
    background: #fafbfd;
}

.match-time {
    color: #5e6879;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
}

.match-time.live {
    color: #dd2f3b;
}

.match-time em {
    display: block;
    font-size: 10px;
    font-style: normal;
}

.team-name {
    min-width: 0;
    overflow: hidden;
    color: #202b42;
    font-size: 9px;
    font-weight: 650;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-team {
    text-align: right;
}

.away-team {
    text-align: left;
}

.score-separator {
    color: #7d8797;
    font-size: 8px;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.score-separator.live-score {
    color: #d9283a;
    font-size: 9px;
}

.odd-btn {
  /*  height: 31px; */
    padding: 0;
    border: 1px solid #0b376f;
    border-radius: 3px;
    color: white;
    background: #071b45;
    font-size: 10px;
    font-weight: 750;
    transition: 0.15s;
}

.odd-btn:hover {
    background: #0a4492;
}

.odd-btn.selected {
    border-color: #087b46;
    background: var(--green);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.odd-btn.locked {
    border-color: #9aa4b3;
    color: #eef2f7;
    background: #8b95a4;
    cursor: not-allowed;
}

.more-btn {
  /*  height: 31px;  */
    border: 1px solid #ccd4df;
    border-radius: 3px;
    color: #40506b;
    background: #f6f7f9;
    font-size: 11px;
}

.empty-state {
    padding: 45px;
    color: #7a8496;
    text-align: center;
}

.empty-state i {
    font-size: 28px;
}

.empty-state p {
    margin: 7px;
}

.empty-state button {
    padding: 6px 12px;
    border: 0;
    border-radius: 4px;
    color: white;
    background: var(--blue);
}

.loading-state {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 135px;
    color: var(--muted-text);
    font-size: 12px;
}

.loading-state span {
    width: 28px;
    height: 28px;
    border: 3px solid #d7deea;
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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


/* ============================================================
   7. MOBILE BET-SLIP BAR AND BOTTOM NAVIGATION
   ============================================================ */

.betslip-dock {
    position: fixed;
    z-index: 1025;
    bottom: 61px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    width: calc(100% - 20px);
    max-width: 430px;
    height: 48px;
    padding: 0 13px;
    border: 0;
    border-radius: 8px 8px 0 0;
    color: white;
    background: #071b45;
    box-shadow: 0 -4px 18px rgba(0, 21, 53, 0.26);
    font-size: 12px;
    transform: translateX(-50%);
}

.betslip-dock .bet-count {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #14213d;
    background: var(--orange);
    font-weight: 800;
}

.betslip-dock strong {
    margin-left: auto;
    color: #f9c34d;
    font-size: 11px;
}

.bottom-nav {
    position: fixed;
    z-index: 1020;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    height: 62px;
    border-top: 1px solid #d6dce5;
    background: white;
}

.bottom-nav button {
    border: 0;
    color: #7b8494;
    background: transparent;
    font-size: 9px;
}

.bottom-nav i {
    display: block;
    font-size: 19px;
}

.bottom-nav .active {
    color: var(--blue);
    font-weight: 800;
}


/* ============================================================
   8. BET SLIP PANEL
   ============================================================ */

.betslip-sheet {
    height: min(74vh, 580px) !important;
    border-radius: 14px 14px 0 0;
}

.betslip-sheet h5 {
    margin: 0;
    font-weight: 800;
}

.betslip-sheet h5 span {
    padding: 3px 7px;
    border-radius: 12px;
    background: var(--orange);
    font-size: 11px;
}

.betslip-sheet small {
    color: var(--muted-text);
}

.selected-bet {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px;
    padding: 9px 3px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
}

.selected-bet.expired {
    border-left: 3px solid #d8333f;
    padding-left: 7px;
    background: #fff5f5;
}

.selected-bet strong {
    font-size: 12px;
}

.selected-bet small {
    grid-column: 1;
}

.selected-bet button {
    grid-row: 1 / 3;
    grid-column: 2;
    border: 0;
    color: #b03636;
    background: transparent;
}

.empty-slip {
    padding: 45px 0;
    color: #8a93a3;
    text-align: center;
}

.empty-slip i {
    font-size: 34px;
}

.empty-slip p {
    margin: 7px 0 0;
    color: #3e495d;
    font-weight: 700;
}

.stake-area {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    background: var(--light-background);
}

.stake-area label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
}

.stake-area input {
    width: 135px;
    height: 35px;
    padding: 5px;
    border: 1px solid #bcc5d3;
    border-radius: 4px;
    text-align: right;
}

.stake-area > div {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
}

.stake-area > button,
.auth-form > button {
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    color: white;
    background: var(--green);
    font-weight: 800;
}


/* ============================================================
   9. LOGIN, REGISTER, TOAST AND FOOTER
   ============================================================ */

.auth-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
}

.auth-form input {
    display: block;
    width: 100%;
    height: 39px;
    margin-top: 4px;
    padding: 0 10px;
    border: 1px solid #c7cfda;
    border-radius: 5px;
}

.auth-form a,
.auth-form > small {
    display: block;
    margin-top: 10px;
    color: var(--blue);
    font-size: 11px;
    text-align: center;
}

.register-form {
    max-height: min(76vh, 620px);
    overflow-y: auto;
}

.toast {
    color: white;
    background: #0a8b52;
}

.toast-success {
    background: #0a8b52;
}

.toast-warning {
    background: #c87600;
}

.toast-info {
    background: #075399;
}

.toast-body i {
    margin-right: 6px;
}

footer {
    padding: 22px 15px 125px;
    color: #aab8d0;
    background: var(--navy);
    font-size: 10px;
    text-align: center;
}

footer strong {
    color: white;
}


/* ============================================================
   10. DESKTOP SIDE CARDS
   These cards are hidden by Bootstrap on mobile.
   ============================================================ */

.desktop-card {
    overflow: hidden;
    border-radius: 6px;
    background: white;
    box-shadow: 0 2px 8px rgba(19, 36, 69, 0.07);
}

.desktop-card h2 {
    margin: 0;
    padding: 8px;
    color: white;
    background: var(--blue);
    font-size: 12px;
    text-align: center;
}

.desktop-card > button {
    display: block;
    width: 100%;
    padding: 8px;
    border: 0;
    border-top: 1px solid #e7ebf0;
    background: white;
    font-size: 11px;
    text-align: left;
}

.desktop-card > button i,
.quick-actions-card button i,
.support-card button i,
.side-results button i {
    margin-right: 5px;
    color: var(--blue);
}

.desktop-card > button:hover,
.quick-actions-card button:hover,
.support-card button:hover {
    color: var(--blue);
    background: #f4f7fb;
}

.account-card {
    padding-bottom: 10px;
}

.account-card label {
    display: block;
    padding: 7px 10px 0;
    font-size: 10px;
}

.account-card input {
    display: block;
    width: 100%;
    border: 1px solid #ccd3dc;
}

.account-card .login-wide {
    width: calc(100% - 20px);
    margin: 10px;
    color: white;
    background: var(--green);
    text-align: center;
}

.account-summary {
    display: grid;
    gap: 4px;
    padding: 12px 10px 2px;
}

.account-summary small {
    color: var(--muted-text);
    font-size: 10px;
}

.account-summary strong {
    color: var(--text);
    font-size: 13px;
}

.account-summary span {
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
}

.desktop-slip h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.desktop-slip h2 span {
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 18px;
    border-radius: 9px;
    color: #17213a;
    background: var(--orange);
    font-size: 10px;
}

.desktop-slip .selected-bet {
    padding: 8px 9px;
}

.desktop-slip-empty {
    margin: 0;
    padding: 14px 10px;
    color: var(--muted-text);
    font-size: 11px;
}

.desktop-slip-summary {
    display: grid;
    gap: 7px;
    padding: 10px;
    border-top: 1px solid var(--border);
    background: var(--light-background);
    font-size: 11px;
}

.desktop-slip-summary span {
    display: flex;
    justify-content: space-between;
}

.desktop-slip-summary button {
    width: 100%;
    padding: 8px;
    border: 0;
    border-radius: 5px;
    color: white;
    background: var(--green);
    font-size: 11px;
    font-weight: 800;
}

.quick-actions-card > button {
    color: white;
    background: var(--green);
    font-weight: 800;
}

.quick-actions-card > button:hover {
    color: white;
    background: #087d47;
}

.ticket-loader {
    padding: 10px;
    border-top: 1px solid var(--border);
}

.ticket-loader label {
    display: block;
    margin-bottom: 5px;
    color: #33415c;
    font-size: 10px;
    font-weight: 800;
}

.ticket-loader div {
    display: grid;
    grid-template-columns: 1fr 32px;
    gap: 5px;
}

.ticket-loader input {
    min-width: 0;
    height: 30px;
    padding: 0 7px;
    border: 1px solid #c8d0dd;
    border-radius: 4px;
    font-size: 11px;
}

.ticket-loader button {
    border: 0;
    border-radius: 4px;
    color: #14213d;
    background: var(--orange);
}

.support-card button {
    display: flex;
    align-items: center;
}

.markets-modal {
    overflow: hidden;
    border: 0;
    border-radius: 8px;
}

.markets-modal .modal-header {
    color: white;
    background: linear-gradient(135deg, var(--navy), var(--blue));
}

.markets-modal .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
}

.markets-match {
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--light-background);
}

.markets-match strong {
    font-size: 14px;
}

.markets-match span {
    color: var(--muted-text);
    font-size: 11px;
}

.market-group {
    margin-top: 9px;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.market-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 9px 10px;
    border: 0;
    color: white;
    background: #073c78;
    font-size: 12px;
    font-weight: 800;
}

.market-group-toggle i {
    transition: transform 0.15s ease;
}

.market-group-toggle.active i {
    transform: rotate(180deg);
}

.market-group-panel {
    display: none;
    background: white;
}

.market-group-panel.show {
    display: block;
}

.market-row {
    display: grid;
    grid-template-columns: minmax(92px, 0.8fr) 1.2fr;
    gap: 8px;
    align-items: center;
    padding: 7px;
    border-top: 1px solid #eef1f5;
}

.market-question {
    color: #2e394f;
    font-size: 11px;
    font-weight: 750;
}

.market-odds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
    gap: 5px;
}

.market-odds .odd-btn {
    min-height: 30px;
}


/* ============================================================
   11. MOBILE SIZES

   The live site uses a very dense table. These small values only
   affect phones; the logo and important account buttons stay clear.
   ============================================================ */

@media (max-width: 991.98px) {
    body {
        font-size: 11px;
    }

    .topbar-main {
        height: 44px;
    }

    .brand {
        font-size: 16px;
    }

    .brand-mark {
        width: 24px;
        height: 24px;
        margin-right: 4px;
    }

    .header-action {
        height: 26px;
        padding: 0 8px;
        font-size: 9px;
    }

    .sport-tabs {
        height: 35px;
    }

    .sport-tab {
        font-size: 7px;
    }

    .sport-tab i {
        font-size: 13px;
        line-height: 14px;
    }

    .sport-tab em {
        top: 0;
        font-size: 6px;
    }

    .page-shell {
        padding-top: 5px;
        padding-bottom: 91px;
    }

    .promo-banner {
        min-height: 50px;
        padding: 6px 12px;
        border-radius: 6px;
    }

    .promo-banner small,
    .promo-banner span {
        font-size: 7px;
    }

    .promo-banner strong {
        font-size: 12px;
    }

    .promo-banner i {
        font-size: 32px;
    }

    .quick-filters {
        gap: 4px;
        margin: 5px 0;
    }

    .filter-pill {
        padding: 3px 9px;
        font-size: 8px;
    }

    .matches-heading {
        padding: 4px 6px;
    }

    .matches-heading span {
        font-size: 10px;
    }

    .matches-heading small,
    .matches-heading time {
        font-size: 7px;
    }

    .match-tools {
        grid-template-columns: 108px 1fr;
        gap: 4px;
        padding: 3px;
    }

    .match-tools label {
        height: 23px;
    }

    .match-tools i {
        padding-left: 5px;
        font-size: 8px;
    }

    .match-tools select,
    .match-tools input {
        padding: 0 4px;
        font-size: 8px;
    }

    .league-block {
        border-bottom-width: 3px;
    }

    .league-title {
        height: 19px;
        padding: 0 4px;
        font-size: 7.5px;
    }

    .league-title div {
        gap: 4px;
    }

    .league-title i {
        font-size: 8px;
    }

    .league-title button {
        font-size: 9px;
    }

    .odds-labels {
        height: 14px;
        padding: 0 2px;
        font-size: 6.5px;
    }

    .odds-labels,
    .match-row {
        grid-template-columns: 34px minmax(52px, 1fr) 20px minmax(52px, 1fr) repeat(3, 36px) 24px;
        gap: 2px;
    }

    .match-row {
        min-height: 28px;
        padding: 1px 2px;
        border-top-color: #e4e8ed;
    }

    .match-time {
        font-size: 6.5px;
        line-height: 1.05;
    }

    .match-time em {
        font-size: 5.5px;
    }

    .team-name {
        font-size: 8.5px;
        line-height: 1.05;
    }

    .score-separator {
        font-size: 6.5px;
    }

    .score-separator.live-score {
        font-size: 7px;
    }

    .odd-btn,
    .more-btn {
        height: 18px;
        border-radius: 2px;
        font-size: 7px;
        line-height: 1;
    }

    .more-btn {
        font-size: 6.5px;
    }

    .betslip-dock {
        bottom: 48px;
        height: 36px;
        font-size: 9px;
    }

    .betslip-dock .bet-count {
        width: 18px;
        height: 18px;
    }

    .betslip-dock strong {
        font-size: 8px;
    }

    .bottom-nav {
        height: 49px;
    }

    .bottom-nav button {
        font-size: 7px;
    }

    .bottom-nav i {
        font-size: 15px;
    }

    footer {
        padding-bottom: 95px;
    }
}


/* ============================================================
   12. DESKTOP SIZES
   ============================================================ */

@media (min-width: 992px) {
    .topbar-main {
        height: 68px;
    }

    .sport-tabs {
        max-width: 570px;
        margin: auto;
    }

    .page-shell {
        padding-top: 18px;
        padding-bottom: 35px;
    }

    .page-shell > .row {
        margin-right: calc(-0.5 * var(--bs-gutter-x));
        margin-left: calc(-0.5 * var(--bs-gutter-x));
    }

    .match-column {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .promo-banner {
        min-height: 105px;
    }

    .matches-panel {
        overflow: hidden;
        border: 1px solid var(--border);
        border-radius: 7px;
    }

    .betslip-dock,
    .bottom-nav {
        display: none;
    }

    .odds-labels,
    .match-row {
        grid-template-columns: 46px minmax(105px, 1fr) 35px minmax(105px, 1fr) repeat(3, 48px) 30px;
    }

    .team-name {
        font-size: 13px;
    }

    footer {
        padding-bottom: 30px;
    }
}


/* ============================================================
   13. EXTRA-SMALL PHONES
   ============================================================ */

@media (max-width: 370px) {
    .odds-labels,
    .match-row {
        grid-template-columns: 32px minmax(36px, 1fr) 18px minmax(36px, 1fr) repeat(3, 34px) 22px;
        gap: 2px;
    }

    .team-name {
        font-size: 11px;
    }

    .header-action {
        padding: 0 7px;
    }
}
