:root {
    color-scheme: light;
    --green-950: #0c211a;
    --green-900: #123126;
    --green-800: #194a37;
    --green-700: #1f6a4f;
    --green-100: #e7f2ed;
    --green-050: #f4f8f6;
    --ink: #18221e;
    --muted: #65726d;
    --line: #d8e2dd;
    --gold: #b88b32;
    --white: #ffffff;
    --danger: #9c3d3d;
    --shadow: 0 18px 50px rgba(19, 48, 37, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--green-050);
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(
            circle at top right,
            rgba(31, 106, 79, 0.08),
            transparent 30rem
        ),
        var(--green-050);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

button,
select {
    font: inherit;
}

.public-header {
    background:
        linear-gradient(
            135deg,
            var(--green-950),
            var(--green-900)
        );
    color: var(--white);
}

.public-header-inner {
    width: min(1380px, calc(100% - 40px));
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto;
}

.league-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
    text-decoration: none;
}

.league-brand img {
    width: 76px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.28));
}

.league-brand span {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.league-brand small {
    color: #cce0d6;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.league-brand strong {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
}

.admin-link {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.admin-link:hover,
.admin-link:focus-visible {
    background: var(--white);
    color: var(--green-950);
}

.standings-shell {
    width: min(1380px, calc(100% - 40px));
    margin: 34px auto 48px;
}

.standings-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 20px;
}

.eyebrow {
    margin: 0 0 6px;
    color: var(--green-700);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: var(--green-950);
    font-size: clamp(2rem, 6vw, 3.35rem);
    line-height: 1;
}

.season-name {
    margin: 9px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.week-selector {
    width: min(100%, 300px);
    display: grid;
    gap: 6px;
}

.week-selector label {
    color: var(--green-900);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.week-selector select {
    width: 100%;
    min-height: 46px;
    padding: 10px 38px 10px 12px;
    border: 1px solid #bdccc4;
    border-radius: 9px;
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
}

.week-selector select:focus {
    border-color: var(--green-700);
    outline: 3px solid rgba(31, 106, 79, 0.16);
}

.week-selector button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--green-700);
    color: var(--white);
    font-weight: 800;
}

.week-summary {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 0.7fr;
    gap: 1px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--line);
    box-shadow: 0 8px 26px rgba(19, 48, 37, 0.06);
}

.week-summary > div {
    min-width: 0;
    display: grid;
    gap: 4px;
    padding: 14px 17px;
    background: var(--white);
}

.week-summary span {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.week-summary strong {
    overflow: hidden;
    color: var(--green-950);
    font-size: 0.98rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.standings-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow);
}

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

.standings-table {
    width: 100%;
    min-width: 1120px;
    border-collapse: separate;
    border-spacing: 0;
    font-variant-numeric: tabular-nums;
}

.standings-table th,
.standings-table td {
    padding: 11px 12px;
    border-right: 1px solid #e4ebe7;
    border-bottom: 1px solid #e4ebe7;
    vertical-align: middle;
}

.standings-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--green-900);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.standings-table thead th:nth-child(3) {
    text-align: left;
}

.standings-table th:last-child,
.standings-table td:last-child {
    border-right: 0;
}

.standings-table tbody tr:last-child td,
.standings-table tbody tr:last-child th {
    border-bottom: 0;
}

.team-start > * {
    border-top: 3px solid #c7d8cf;
}

.standings-table tbody .team-start:first-child > * {
    border-top: 0;
}

.team-start,
.team-continuation {
    background: var(--white);
}

.team-start:nth-of-type(4n + 1),
.team-start:nth-of-type(4n + 1) + .team-continuation {
    background: #f8fbf9;
}

.standing-rank {
    width: 86px;
    min-width: 86px;
    background: var(--green-100);
    color: var(--green-900);
    text-align: center;
}

.rank-number {
    display: inline;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
}

.rank-suffix {
    margin-left: 1px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: lowercase;
    vertical-align: super;
}

.team-number {
    width: 62px;
    min-width: 62px;
    color: var(--green-950);
    font-size: 1.25rem;
    font-weight: 900;
    text-align: center;
}

.player-name {
    min-width: 225px;
    font-weight: 800;
    text-align: left;
}

.subbed-out-player {
    color: #776767;
    text-decoration-line: line-through;
    text-decoration-color: var(--danger);
    text-decoration-thickness: 2px;
}

.substitute-name {
    display: inline-block;
    margin-left: 5px;
    color: var(--green-700);
    font-size: 0.82rem;
    font-weight: 900;
}

.substitute-only {
    color: var(--green-700);
}

.sub-label {
    display: inline-block;
    margin-left: 5px;
    padding: 2px 5px;
    border-radius: 999px;
    background: var(--green-100);
    color: var(--green-800);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.no-player {
    color: var(--muted);
}

.score-cell,
.points-cell,
.new-handicap {
    text-align: center;
}

.score-cell {
    width: 88px;
    min-width: 88px;
    font-weight: 800;
}

.net-cell {
    color: var(--green-800);
}

.points-cell {
    width: 124px;
    min-width: 124px;
    font-size: 1rem;
    font-weight: 900;
}

.match-points {
    background: #f8f5ec;
    color: #755516;
}

.ytd-points {
    background: var(--green-100);
    color: var(--green-900);
    font-size: 1.12rem;
}

.new-handicap {
    width: 118px;
    min-width: 118px;
    color: var(--green-800);
    font-size: 1rem;
    font-weight: 900;
}

.standings-notes {
    display: grid;
    gap: 5px;
    margin-top: 14px;
    padding: 0 4px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.standings-notes p {
    margin: 0;
}

.standings-notes strong {
    color: var(--green-900);
}

.empty-state {
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.empty-state h2 {
    margin: 0 0 8px;
    color: var(--green-950);
}

.empty-state p {
    margin: 0;
    color: var(--muted);
}

.public-footer {
    padding: 24px 20px 32px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 760px) {
    .public-header-inner,
    .standings-shell {
        width: min(100% - 24px, 1380px);
    }

    .public-header-inner {
        min-height: 78px;
    }

    .league-brand {
        gap: 10px;
    }

    .league-brand img {
        width: 58px;
        height: 46px;
    }

    .league-brand small {
        font-size: 0.59rem;
        letter-spacing: 0.07em;
    }

    .league-brand strong {
        font-size: 1.12rem;
    }

    .admin-link {
        padding: 8px 9px;
        font-size: 0.72rem;
    }

    .standings-shell {
        margin-top: 24px;
    }

    .standings-intro {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .week-selector {
        width: 100%;
    }

    .week-summary {
        grid-template-columns: 1fr 1fr;
    }

    .week-summary > div:last-child {
        grid-column: 1 / -1;
    }
}

@media print {
    .public-header {
        background: none;
        color: var(--ink);
    }

    .admin-link,
    .week-selector,
    .public-footer {
        display: none;
    }

    .standings-shell {
        width: 100%;
        margin: 10px 0;
    }

    .standings-card {
        box-shadow: none;
    }

    .standings-table {
        min-width: 0;
        font-size: 9pt;
    }

    .standings-table thead th {
        position: static;
        background: #dfe9e4;
        color: #000;
    }
}

/* Mobile standings summary cleanup. */
@media (max-width: 760px) {
    .week-summary {
        grid-template-columns: 1fr;
    }

    .week-summary > div:last-child {
        grid-column: auto;
    }

    .teams-summary {
        display: none;
    }
}

/* Stronger compact mobile layout - 2026-07-14 */
@media screen and (max-width: 760px) {
    /*
     * Use a direct-child selector and !important so the Teams card
     * remains hidden even if older mobile rules are still cached.
     */
    .week-summary > .teams-summary {
        display: none !important;
    }

    body {
        background: var(--green-050);
    }

    .public-header-inner,
    .standings-shell {
        width: calc(100% - 16px);
    }

    .public-header-inner {
        min-height: 62px;
        gap: 8px;
    }

    .league-brand {
        gap: 7px;
    }

    .league-brand img {
        width: 44px;
        height: 36px;
    }

    .league-brand span {
        gap: 1px;
    }

    .league-brand small {
        display: none;
    }

    .league-brand strong {
        font-size: 1rem;
        line-height: 1.1;
    }

    .admin-link {
        padding: 6px 8px;
        border-radius: 7px;
        font-size: 0.64rem;
    }

    .standings-shell {
        margin-top: 14px;
        margin-bottom: 24px;
    }

    .standings-intro {
        gap: 10px;
        margin-bottom: 10px;
    }

    .eyebrow {
        margin-bottom: 3px;
        font-size: 0.61rem;
        letter-spacing: 0.09em;
    }

    h1 {
        font-size: 1.75rem;
    }

    .season-name {
        margin-top: 5px;
        font-size: 0.76rem;
    }

    .week-selector {
        gap: 4px;
    }

    .week-selector label {
        font-size: 0.64rem;
    }

    .week-selector select {
        min-height: 39px;
        padding: 7px 34px 7px 9px;
        border-radius: 8px;
        font-size: 0.78rem;
    }

    .week-summary {
        grid-template-columns: 1fr 1.25fr;
        margin-bottom: 9px;
        border-radius: 9px;
    }

    .week-summary > div {
        min-height: 48px;
        padding: 8px 9px;
    }

    .week-summary > div:last-child {
        grid-column: auto;
    }

    .week-summary span {
        font-size: 0.56rem;
        letter-spacing: 0.055em;
    }

    .week-summary strong {
        font-size: 0.76rem;
    }

    .standings-card {
        border-radius: 10px;
        box-shadow: 0 8px 22px rgba(19, 48, 37, 0.09);
    }

    .standings-table {
        min-width: 820px;
        font-size: 0.72rem;
    }

    .standings-table th,
    .standings-table td {
        padding: 6px 5px;
    }

    .standings-table thead th {
        font-size: 0.56rem;
        letter-spacing: 0.015em;
        white-space: normal;
    }

    .standing-rank {
        width: 48px;
        min-width: 48px;
    }

    .rank-number {
        font-size: 1rem;
    }

    .rank-suffix {
        font-size: 0.52rem;
    }

    .team-number {
        width: 40px;
        min-width: 40px;
        font-size: 0.92rem;
    }

    .player-name {
        min-width: 170px;
        font-size: 0.7rem;
    }

    .substitute-name {
        display: block;
        margin: 2px 0 0;
        font-size: 0.64rem;
    }

    .score-cell {
        width: 52px;
        min-width: 52px;
        font-size: 0.7rem;
    }

    .points-cell {
        width: 74px;
        min-width: 74px;
        font-size: 0.75rem;
    }

    .ytd-points {
        font-size: 0.82rem;
    }

    .new-handicap {
        width: 70px;
        min-width: 70px;
        font-size: 0.76rem;
    }

    .team-start > * {
        border-top-width: 2px;
    }

    .standings-notes {
        gap: 4px;
        margin-top: 9px;
        padding: 0 2px;
        font-size: 0.65rem;
        line-height: 1.35;
    }

    .public-footer {
        padding: 12px 10px 18px;
        font-size: 0.65rem;
    }
}

@media screen and (max-width: 420px) {
    .public-header-inner,
    .standings-shell {
        width: calc(100% - 10px);
    }

    .admin-link {
        padding: 5px 6px;
        font-size: 0.59rem;
    }

    .standings-table {
        min-width: 760px;
    }

    .player-name {
        min-width: 150px;
    }

    .score-cell {
        width: 47px;
        min-width: 47px;
    }

    .points-cell {
        width: 67px;
        min-width: 67px;
    }

    .new-handicap {
        width: 64px;
        min-width: 64px;
    }
}

/* Smaller mobile Names column - 2026-07-14 */
@media screen and (max-width: 760px) {
    .standings-table {
        min-width: 735px;
    }

    .player-name {
        width: 122px;
        min-width: 122px;
        max-width: 122px;
        padding-right: 4px;
        padding-left: 6px;
        font-size: 0.62rem;
        line-height: 1.18;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .subbed-out-player,
    .substitute-name,
    .substitute-only {
        max-width: 112px;
    }

    .substitute-name {
        margin-top: 1px;
        font-size: 0.57rem;
        line-height: 1.15;
    }

    .sub-label {
        margin-left: 2px;
        padding: 1px 3px;
        font-size: 0.48rem;
    }

    .score-cell {
        width: 44px;
        min-width: 44px;
    }

    .points-cell {
        width: 64px;
        min-width: 64px;
    }

    .new-handicap {
        width: 60px;
        min-width: 60px;
    }
}

@media screen and (max-width: 420px) {
    .standings-table {
        min-width: 685px;
    }

    .player-name {
        width: 108px;
        min-width: 108px;
        max-width: 108px;
        padding-right: 3px;
        padding-left: 4px;
        font-size: 0.58rem;
    }

    .subbed-out-player,
    .substitute-name,
    .substitute-only {
        max-width: 100px;
    }

    .substitute-name {
        font-size: 0.53rem;
    }

    .score-cell {
        width: 41px;
        min-width: 41px;
    }

    .points-cell {
        width: 60px;
        min-width: 60px;
    }

    .new-handicap {
        width: 56px;
        min-width: 56px;
    }
}

/* Mobile-only horizontal scroll cue - 2026-07-14 */
.mobile-scroll-cue {
    display: none;
}

@media screen and (max-width: 760px) {
    .standings-card {
        position: relative;
    }

    .mobile-scroll-cue {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        min-height: 31px;
        padding: 6px 10px;
        border-bottom: 1px solid var(--line);
        background:
            linear-gradient(
                90deg,
                #edf5f1,
                #f8fbf9
            );
        color: var(--green-800);
        font-size: 0.65rem;
        font-weight: 900;
        letter-spacing: 0.025em;
        text-transform: uppercase;
    }

    .mobile-scroll-cue strong {
        font-size: 0.95rem;
        line-height: 1;
        animation: standings-scroll-arrow 1.25s ease-in-out infinite;
    }

    .standings-table-wrap {
        position: relative;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    /*
     * Subtle fade at the right edge reinforces that more columns
     * are available without covering table content permanently.
     */
    .standings-card::after {
        content: "";
        position: absolute;
        z-index: 4;
        top: 31px;
        right: 0;
        bottom: 0;
        width: 22px;
        pointer-events: none;
        background:
            linear-gradient(
                90deg,
                rgba(244, 248, 246, 0),
                rgba(18, 49, 38, 0.16)
            );
    }
}

@keyframes standings-scroll-arrow {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

@media print {
    .mobile-scroll-cue {
        display: none !important;
    }

    .standings-card::after {
        display: none;
    }
}

/* Disabled Player Login button - 2026-07-14 */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.player-login-button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1px;
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
    cursor: not-allowed;
    opacity: 0.82;
    line-height: 1;
}

.player-login-button span {
    font-size: 0.76rem;
    font-weight: 900;
}

.player-login-button small {
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media screen and (max-width: 760px) {
    .header-actions {
        gap: 5px;
    }

    .player-login-button {
        min-height: 32px;
        padding: 4px 7px;
        border-radius: 7px;
    }

    .player-login-button span {
        font-size: 0.61rem;
    }

    .player-login-button small {
        font-size: 0.43rem;
    }
}

@media screen and (max-width: 420px) {
    .header-actions {
        gap: 4px;
    }

    .player-login-button {
        padding: 4px 5px;
    }

    .player-login-button span {
        font-size: 0.57rem;
    }

    .player-login-button small {
        font-size: 0.39rem;
    }
}

@media print {
    .header-actions {
        display: none;
    }
}

/* Weekly individual award summary and highlights. */
.weekly-awards-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.weekly-award-card {
    min-width: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 3px 10px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--white);
    box-shadow: 0 7px 20px rgba(19, 48, 37, 0.07);
}

.weekly-award-card span {
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.weekly-award-card strong {
    grid-row: 1 / 3;
    grid-column: 2;
    justify-self: end;
    color: var(--green-950);
    font-size: 1.05rem;
    line-height: 1.1;
    text-align: right;
}

.weekly-award-card small {
    min-width: 0;
    overflow: hidden;
    color: var(--green-800);
    font-size: 0.7rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.low-gross-award {
    border-left: 5px solid #c58a1a;
}

.low-net-award {
    border-left: 5px solid #1f7a55;
}

.closest-pin-award {
    border-left: 5px solid #9a4c9d;
}

.player-name-line {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.senior-tag,
.award-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.senior-tag {
    padding: 2px 5px;
    background: #ece8f6;
    color: #604c88;
    font-size: 0.5rem;
    text-decoration: none;
}

.weekly-award-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 4px;
}

.award-badge {
    padding: 3px 5px;
    font-size: 0.48rem;
}

.low-gross-badge {
    background: #fff0cc;
    color: #7b5310;
}

.low-net-badge {
    background: #dff2e8;
    color: #14583c;
}

.closest-pin-badge {
    background: #f1e4f3;
    color: #713874;
}

.low-gross-score-cell {
    background: #fff3d8 !important;
    color: #6d4809;
    box-shadow: inset 0 0 0 2px #e1b45d;
}

.low-net-score-cell {
    background: #e3f4eb !important;
    color: #12533a;
    box-shadow: inset 0 0 0 2px #73b591;
}

.closest-pin-player {
    background: #f7edf8 !important;
    box-shadow: inset 4px 0 0 #a360a6;
}

@media screen and (max-width: 760px) {
    .weekly-awards-summary {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 8px;
    }

    .weekly-award-card {
        min-height: 45px;
        padding: 7px 9px;
        border-radius: 8px;
    }

    .weekly-award-card span {
        font-size: 0.52rem;
    }

    .weekly-award-card strong {
        font-size: 0.8rem;
    }

    .weekly-award-card small {
        font-size: 0.59rem;
    }

    .senior-tag {
        padding: 1px 3px;
        font-size: 0.4rem;
    }

    .weekly-award-badges {
        gap: 2px;
        margin-top: 2px;
    }

    .award-badge {
        padding: 2px 3px;
        font-size: 0.39rem;
    }
}

/* Larger and more noticeable mobile horizontal-scroll notice. */
@media screen and (max-width: 760px) {
    .mobile-scroll-cue {
        gap: 9px;
        min-height: 39px;
        padding: 8px 12px;
        border-top: 1px solid #c8aa55;
        border-bottom: 2px solid #b99024;
        background:
            linear-gradient(
                135deg,
                #fff4c9,
                #f8e39a
            );
        color: #563d00;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.75),
            0 3px 8px rgba(86, 61, 0, 0.12);
        font-size: 0.76rem;
        font-weight: 950;
        letter-spacing: 0.035em;
        line-height: 1.1;
        text-align: center;
    }

    .mobile-scroll-cue strong {
        min-width: 24px;
        color: #7b5700;
        font-size: 1.28rem;
        font-weight: 950;
    }

    .standings-card::after {
        top: 39px;
    }
}

@media screen and (max-width: 390px) {
    .mobile-scroll-cue {
        min-height: 37px;
        padding: 7px 8px;
        font-size: 0.7rem;
        letter-spacing: 0.025em;
    }

    .mobile-scroll-cue strong {
        font-size: 1.18rem;
    }

    .standings-card::after {
        top: 37px;
    }
}

/* Links from Standings to the selected team's season statistics. */
.team-stats-team-link,
.team-stats-player-link {
    color: inherit;
    font: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.team-stats-team-link {
    min-width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
}

.team-stats-player-link {
    border-radius: 4px;
}

.team-stats-team-link:hover,
.team-stats-team-link:focus-visible,
.team-stats-player-link:hover,
.team-stats-player-link:focus-visible {
    color: #146445;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.team-stats-team-link:focus-visible,
.team-stats-player-link:focus-visible {
    outline: 3px solid rgba(31, 109, 77, 0.18);
    outline-offset: 2px;
}

@media screen and (max-width: 760px) {
    .team-stats-team-link,
    .team-stats-player-link {
        min-height: 30px;
        align-items: center;
    }
}
