.oot-wrap {
    --oot-bg: #f4f7fb;
    --oot-surface: rgba(255, 255, 255, 0.92);
    --oot-surface-strong: #ffffff;
    --oot-border: rgba(21, 51, 98, 0.10);
    --oot-border-strong: rgba(21, 51, 98, 0.16);
    --oot-text: #13233f;
    --oot-text-soft: #62738f;
    --oot-primary: #285bff;
    --oot-primary-2: #68a3ff;
    --oot-glow: rgba(40, 91, 255, 0.15);
    --oot-shadow: 0 22px 70px rgba(14, 31, 67, 0.10);
    --oot-radius-xl: 14px;
    --oot-radius-lg: 18px;
    --oot-radius-md: 14px;
    margin: 32px 0;
    color: var(--oot-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.oot-shell {
    position: relative;
    overflow: hidden;
    border-radius: var(--oot-radius-xl);
    border: 1px solid var(--oot-border);
    background:
        radial-gradient(circle at top left, rgba(104, 163, 255, 0.20), transparent 30%),
        radial-gradient(circle at top right, rgba(40, 91, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: var(--oot-shadow);
}

.oot-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 30px 30px 26px;
    border-bottom: 1px solid var(--oot-border);
}

.oot-toolbar-copy {
    max-width: 720px;
}

.oot-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(40, 91, 255, 0.08);
    color: var(--oot-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 12px;
}

.oot-heading {
    margin: 0;
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -.03em;
    font-weight: 900;
    color: var(--oot-text);
}

.oot-toolbar-subtitle {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--oot-text-soft);
}

.oot-tabs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 1px solid var(--oot-border);
    border-radius: 999px;
    background: rgba(244, 247, 251, 0.82);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.oot-tab {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--oot-text-soft);
    border-radius: 999px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: all .22s ease;
}

.oot-tab:hover,
.oot-tab.is-active {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    color: var(--oot-primary);
    box-shadow: 0 10px 26px var(--oot-glow);
}

.oot-market-panel { display: none; }
.oot-market-panel.is-active { display: block; }

.oot-table-wrap {
    overflow-x: auto;
    padding: 0 18px 18px;
}

.oot-table {
    width: 100%;
    /*min-width: 1080px;*/
    border-collapse: separate;
    border-spacing: 0 14px;
}

.oot-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: 14px 16px 10px;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 800;
    color: #5f7190;
    text-align: center;
}

.oot-table thead th:first-child {
    text-align: left;
}

.oot-game-col,
.oot-team-cell {
    min-width: 360px;
}

.oot-bookmaker-head {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid var(--oot-border);
    background: rgba(255,255,255,0.82);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.oot-bookmaker-head img {
    max-width: 90px;
    max-height: 28px;
    width: auto;
    object-fit: contain;
}

.oot-bookmaker-head span {
    font-size: 13px;
    font-weight: 800;
    color: #334766;
}

.oot-event-group td {
    padding: 0;
    border: 0;
    background: transparent;
}

.oot-event-title-row td {
    padding-bottom: 10px;
}

.oot-event-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border: 1px solid var(--oot-border);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,251,255,.95) 100%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.oot-event-title {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 900;
    color: var(--oot-text);
}

.oot-event-title span {
    color: var(--oot-primary);
}

.oot-event-time {
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--oot-text-soft);
}

.oot-team-data-row td {
    border-top: 1px solid var(--oot-border);
}

.oot-team-data-row:last-child td {
    border-bottom: 1px solid var(--oot-border);
}

.oot-team-data-row:last-child .oot-team-cell {
    border-radius: 0 0 0 22px;
}

.oot-team-data-row:last-child .oot-odds-cell:last-child {
    border-radius: 0 0 22px 0;
}

.oot-team-cell,
.oot-odds-cell {
    height: 92px;
    background: rgba(255,255,255,0.86);
}

.oot-team-cell {
    padding: 0 20px;
}

.oot-odds-cell {
    padding: 0 14px;
    text-align: center;
    vertical-align: middle;
}

.oot-team-row-head {
    width: 100%;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.oot-team-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.oot-team-logo {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    border: 1px solid rgba(40, 91, 255, 0.12);
    box-shadow: 0 10px 24px rgba(17, 39, 82, 0.08);
    overflow: hidden;
}

.oot-team-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.oot-team-logo-fallback {
    font-size: 16px;
    font-weight: 900;
    color: var(--oot-primary);
}

.oot-team-copy {
    min-width: 0;
}

.oot-team-name {
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--oot-text);
}

.oot-team-meta {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--oot-text-soft);
}

.oot-odd-link,
.oot-empty {
    min-height: 62px;
    height: 62px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border-radius: 16px;
    text-decoration: none;
    box-sizing: border-box;
    max-width: 90px;
}

.oot-odd-link {
    position: relative;
    border: 1px solid rgba(40, 91, 255, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    color: var(--oot-text);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.85),
        0 12px 26px rgba(17, 39, 82, 0.06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.oot-odd-link:hover {
    transform: translateY(-2px);
    border-color: rgba(40, 91, 255, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.85),
        0 16px 34px rgba(40, 91, 255, 0.16);
}

.oot-no-link {
    cursor: default;
}

.oot-main-value {
    font-size: 16px;
    line-height: 1;
    letter-spacing: -.02em;
    font-weight: 900;
    color: #102342;
}

.oot-sub-value {
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    color: #6c7e9a;
}

.oot-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(40, 91, 255, 0.08);
    color: var(--oot-primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.oot-empty {
    border: 1px dashed rgba(100, 124, 166, 0.22);
    background: rgba(247, 249, 252, 0.72);
    color: #98a6bc;
    font-size: 20px;
}

.oot-alert {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--oot-border);
    background: #ffffff;
}

.oot-alert-error {
    border-color: #ffd5d5;
    background: #fff8f8;
    color: #a12424;
}

@media (max-width: 1024px) {
    .oot-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .oot-tabs {
        width: 100%;
        justify-content: space-between;
    }

    .oot-tab {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .oot-toolbar {
        padding: 24px 20px 20px;
    }

    .oot-heading {
        font-size: 26px;
    }

    .oot-table-wrap {
        padding: 0 12px 12px;
    }

    .oot-table {
        min-width: 920px;
    }

    .oot-game-col,
    .oot-team-cell {
        min-width: 300px;
    }

    .oot-event-title-wrap {
        padding: 16px 18px;
    }
}

/* Vaseto Fixes  */
@media (max-width: 767px) {
.oot-shell {
    margin: 10px;
}
.oot-event-title {
    font-size: 14px!important;
    
}
.oot-team-name {
    font-size: 14px!important;
}
.oot-game-col, .oot-team-cell {
    min-width: 0;
    width: 35%!important;
}
}

.oot-game-col,
.oot-team-cell {
    min-width: 0;
    width: 28%;  /* was 40%, reduced to give more space to odds columns */
}

.oot-table thead th:not(:first-child),
.oot-odds-cell {
    width: 18%;  /* was 15%, 4 columns × 18% = 72%, + 28% team = 100% */
}

.oot-table-wrap {
    overflow-x: auto;
    padding: 0 18px 18px;
}

.oot-table {
    width: 100%;
    table-layout: fixed;        /* key: forces columns to respect width percentages */
    border-collapse: separate;
    border-spacing: 0 14px;
}

.oot-game-col,
.oot-team-cell {
    min-width: 0;               /* remove the 360px min-width */
    width: 40%;                 /* team column gets 40% of table width */
}

.oot-table thead th:not(:first-child),
.oot-odds-cell {
    width: 15%;                 /* 4 bookmaker columns share remaining 60% */
}

.oot-team-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;    /* long names like "Stephen F. Austin Lumberjacks" won't break layout */
}
