/* Futzoe — Pronósticos (mobile-first, maquetación) */

.futzoe-predictions-page {
    padding-bottom: 5rem;
}

.futzoe-predictions-summary .card-body {
    padding: 1rem;
}

.futzoe-predictions-summary-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.futzoe-predictions-summary-title {
    font-size: 1.0625rem;
    line-height: 1.35;
}

.futzoe-predictions-summary-actions {
    display: flex;
    justify-content: stretch;
}

.futzoe-predictions-ranking-btn {
    width: 100%;
}

.futzoe-predictions-stats {
    margin-inline: 0;
}

.futzoe-predictions-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-height: 4.25rem;
    padding: 0.65rem 0.5rem;
    border-radius: 0.5rem;
    background-color: rgba(var(--bs-body-color-rgb), 0.04);
    border: 1px solid var(--bs-border-color);
    text-align: center;
}

.futzoe-predictions-stat-value {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.futzoe-predictions-stat-label {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--bs-secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.futzoe-predictions-stat-label-short {
    display: none;
}

.futzoe-predictions-toolbar {
    width: 100%;
}

.futzoe-predictions-matchday-field {
    width: 100%;
}

.futzoe-predictions-matchday-wrap {
    width: 100%;
    min-width: 0;
}

.futzoe-predictions-match-count {
    align-self: center;
    white-space: nowrap;
}

.futzoe-predictions-stat--points .futzoe-predictions-stat-value {
    color: var(--bs-success);
}

.futzoe-predictions-stat--pending .futzoe-predictions-stat-value {
    color: var(--bs-warning);
}

.futzoe-predictions-play-points {
    color: var(--bs-primary);
    margin-top: 0.15rem;
}

.futzoe-predictions-save-bar .futzoe-predictions-play-points {
    font-variant-numeric: tabular-nums;
}

.futzoe-predictions-tabs .nav-link {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    min-height: 2.5rem;
}

.futzoe-predictions-tabs .badge {
    font-size: 0.6875rem;
    vertical-align: middle;
}

.futzoe-predictions-matchday-select {
    max-width: 100%;
}

.futzoe-predictions-matchday-select + .select2-container {
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
}

.futzoe-predictions-matchday-select + .select2-container .select2-selection--single {
    min-height: 2.125rem;
    display: flex;
    align-items: center;
}

.futzoe-predictions-matchday-select + .select2-container .select2-selection__rendered {
    font-size: 0.875rem;
    padding-left: 0.75rem;
}

.futzoe-prediction-card {
    border: 1px solid var(--bs-border-color);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.futzoe-prediction-card--missing {
    border-left: 3px solid var(--bs-danger);
}

.futzoe-prediction-card--saved {
    border-left: 3px solid var(--bs-success);
}

.futzoe-prediction-card--scored {
    border-left: 3px solid var(--bs-primary);
    opacity: 0.95;
}

.futzoe-prediction-card.is-dirty {
    border-color: var(--bs-warning);
    box-shadow: 0 0 0 1px rgba(var(--bs-warning-rgb), 0.35);
}

.futzoe-predictions-onboarding-hint {
    border-left: 3px solid var(--bs-primary);
}

.futzoe-prediction-card--onboarding {
    border-color: rgba(var(--bs-primary-rgb), 0.55);
    box-shadow: 0 0 0 2px rgba(var(--bs-primary-rgb), 0.12);
    animation: futzoe-prediction-onboarding-pulse 2s ease-in-out infinite;
}

@keyframes futzoe-prediction-onboarding-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(var(--bs-primary-rgb), 0.12);
    }

    50% {
        box-shadow: 0 0 0 4px rgba(var(--bs-primary-rgb), 0.2);
    }
}

@media (prefers-reduced-motion: reduce) {
    .futzoe-prediction-card--onboarding {
        animation: none;
    }
}

.futzoe-prediction-teams-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.5rem;
}

.futzoe-prediction-vs {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

.futzoe-prediction-mode .futzoe-prediction-mode-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 3.25rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.15;
}

.futzoe-prediction-mode-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
}

.futzoe-prediction-mode-pts {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background-color: rgba(var(--bs-primary-rgb), 0.12);
    color: var(--bs-primary);
}

.futzoe-prediction-mode .btn-check:checked + .futzoe-prediction-mode-btn {
    position: relative;
    z-index: 2;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
    box-shadow: none;
    outline: none;
}

.futzoe-prediction-mode .btn-check:focus + .futzoe-prediction-mode-btn,
.futzoe-prediction-mode .btn-check:active + .futzoe-prediction-mode-btn {
    box-shadow: none;
    outline: none;
}

.futzoe-prediction-mode .btn-check:checked + .futzoe-prediction-mode-btn .futzoe-prediction-mode-pts {
    background-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.futzoe-prediction-winner-btns .futzoe-prediction-winner-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-height: 2.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    padding-inline: 0.375rem;
    white-space: normal;
    line-height: 1.2;
    hyphens: auto;
}

.futzoe-prediction-winner-btn-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.futzoe-prediction-winner-btn-flag .futzoe-team-flag-img {
    width: 1.375rem;
    height: 1rem;
    object-fit: cover;
}

.futzoe-prediction-winner-btn-label {
    display: block;
}

.futzoe-prediction-winner-btns .btn-check:checked + .futzoe-prediction-winner-btn {
    position: relative;
    z-index: 2;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
    box-shadow: none;
    outline: none;
}

.futzoe-prediction-winner-btns .btn-check:focus + .futzoe-prediction-winner-btn,
.futzoe-prediction-winner-btns .btn-check:active + .futzoe-prediction-winner-btn {
    box-shadow: none;
    outline: none;
}

.futzoe-prediction-panel-exact {
    padding-block: 0.25rem;
}

.futzoe-prediction-score-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.futzoe-prediction-score-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 0;
    color: var(--bs-body-color);
}

.futzoe-prediction-score-side--home {
    align-items: flex-start;
}

.futzoe-prediction-score-side--away {
    align-items: flex-end;
}

.futzoe-prediction-score-side-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.futzoe-prediction-score-side-flag .futzoe-team-flag-img {
    width: 1.375rem;
    height: 1rem;
    object-fit: cover;
}

.futzoe-prediction-score-side-name {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.futzoe-prediction-team {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    min-width: 0;
}

.futzoe-prediction-team--home {
    justify-content: flex-start;
}

.futzoe-prediction-team--away {
    justify-content: flex-end;
}

.futzoe-prediction-team .futzoe-team-flag-img {
    width: 1.5rem;
    height: 1.125rem;
    object-fit: cover;
    flex-shrink: 0;
}

.futzoe-prediction-team-name {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.futzoe-prediction-inputs {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    min-width: 0;
}

.futzoe-prediction-goals {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 3.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    -moz-appearance: textfield;
    appearance: textfield;
}

.futzoe-prediction-goals::-webkit-outer-spin-button,
.futzoe-prediction-goals::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.futzoe-prediction-goals::placeholder {
    text-align: center;
    opacity: 0.45;
}

.futzoe-prediction-goals:read-only {
    background-color: var(--bs-gray-50);
    border-style: dashed;
    opacity: 0.85;
}

.futzoe-prediction-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.25rem;
    color: var(--bs-secondary-color);
    font-weight: 700;
    font-size: 1.625rem;
    line-height: 1;
}

.futzoe-prediction-points-detail {
    padding-top: 0.5rem;
    border-top: 1px dashed var(--bs-border-color);
}

.futzoe-predictions-save-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(var(--futzoe-bottom-nav-offset, 0px) + var(--futzoe-keyboard-offset, 0px));
    z-index: 1040;
    padding: 0.75rem 0 calc(0.75rem + env(safe-area-inset-bottom, 0));
    background: rgba(var(--bs-body-bg-rgb), 0.97);
    border-top: 1px solid var(--bs-border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 -0.35rem 1.25rem rgba(var(--bs-body-color-rgb, 67, 89, 113), 0.1);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.futzoe-predictions-save-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.futzoe-predictions-save-bar.is-dirty {
    border-top-color: rgba(var(--bs-primary-rgb), 0.45);
}

.futzoe-predictions-save-bar.is-saving {
    border-top-color: rgba(var(--bs-primary-rgb), 0.55);
}

.futzoe-predictions-save-bar.is-success {
    border-top-color: rgba(var(--bs-success-rgb), 0.65);
    box-shadow: 0 -0.35rem 1.25rem rgba(var(--bs-success-rgb), 0.12);
}

.futzoe-predictions-save-bar.is-error {
    border-top-color: rgba(var(--bs-danger-rgb), 0.65);
}

.futzoe-predictions-save-bar__status {
    color: var(--bs-body-color);
    line-height: 1.35;
}

.futzoe-predictions-save-bar.is-success .futzoe-predictions-save-bar__status {
    color: var(--bs-success);
}

.futzoe-predictions-save-bar.is-error .futzoe-predictions-save-bar__status {
    color: var(--bs-danger);
}

.futzoe-predictions-save-bar .futzoe-predictions-play-points {
    color: var(--bs-primary);
    margin-top: 0.2rem;
    font-variant-numeric: tabular-nums;
}

.futzoe-predictions-save-bar.is-saving .futzoe-predictions-save-bar__status-icon {
    animation: futzoe-save-bar-spin 0.85s linear infinite;
}

@keyframes futzoe-save-bar-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.futzoe-predictions-save-all-btn {
    min-height: 2.75rem;
    min-width: 8.5rem;
}

body.futzoe-has-bottom-nav {
    --futzoe-bottom-nav-offset: 0px;
}

@media (max-width: 1199.98px) {
    body.futzoe-has-bottom-nav .futzoe-predictions-page {
        padding-bottom: calc(5rem + var(--futzoe-bottom-nav-height, 3.625rem));
    }

    body.futzoe-predictions-save-active.futzoe-has-bottom-nav .futzoe-predictions-page {
        padding-bottom: calc(9.5rem + var(--futzoe-bottom-nav-height, 3.625rem));
    }

    body.futzoe-has-bottom-nav.futzoe-predictions-toast-anchor #toast-container.toast-top-center,
    body.futzoe-has-bottom-nav.futzoe-predictions-save-active #toast-container.toast-top-center {
        top: auto;
        bottom: calc(var(--futzoe-bottom-nav-offset, 0px) + var(--futzoe-keyboard-offset, 0px) + 0.75rem);
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        transition: bottom 0.22s ease;
    }

    body.futzoe-has-bottom-nav.futzoe-predictions-save-active #toast-container.toast-top-center {
        bottom: calc(var(--futzoe-bottom-nav-offset, 0px) + var(--futzoe-keyboard-offset, 0px) + 4.75rem);
    }
}

.futzoe-prediction-offcanvas .offcanvas-body {
    padding-bottom: 1.5rem;
}

.futzoe-prediction-detail-hero {
    line-height: 1.45;
}

.futzoe-prediction-detail-teams {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.5rem;
}

.futzoe-prediction-detail-team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.futzoe-prediction-detail-team--away {
    justify-content: flex-end;
}

.futzoe-prediction-detail-flag {
    flex-shrink: 0;
    width: 2rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.futzoe-prediction-detail-flag .futzoe-team-flag-img {
    width: 2rem;
    height: 1.5rem;
    object-fit: cover;
}

.futzoe-prediction-detail-team-name {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.3;
    min-width: 0;
}

.futzoe-prediction-detail-vs {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
}

.futzoe-prediction-detail-meta li + li {
    border-top: 1px dashed var(--bs-border-color);
}

.futzoe-prediction-detail-yours {
    border-width: 2px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.futzoe-prediction-detail-yours--empty {
    border-style: dashed;
    border-color: var(--bs-border-color);
    background: var(--bs-body-bg);
}

.futzoe-prediction-detail-yours--empty .futzoe-prediction-detail-pick {
    color: var(--bs-secondary-color);
    font-size: 1rem;
    font-weight: 600;
}

.futzoe-prediction-detail-yours--winner {
    border-color: rgba(var(--bs-primary-rgb), 0.35);
    background: rgba(var(--bs-primary-rgb), 0.06);
    box-shadow: 0 0.25rem 1rem rgba(var(--bs-primary-rgb), 0.08);
}

.futzoe-prediction-detail-yours--exact {
    border-color: rgba(var(--bs-success-rgb), 0.35);
    background: rgba(var(--bs-success-rgb), 0.06);
    box-shadow: 0 0.25rem 1rem rgba(var(--bs-success-rgb), 0.08);
}

.futzoe-prediction-detail-yours--unsaved {
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-warning-rgb), 0.15);
}

.futzoe-prediction-detail-pick-wrap {
    padding: 0.75rem 0.5rem;
}

.futzoe-prediction-detail-pick {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--bs-heading-color);
}

.futzoe-prediction-detail-pick.futzoe-prediction-detail-pick--score {
    font-family: var(--bs-font-monospace);
    font-size: 2rem;
    letter-spacing: 0.04em;
}

.futzoe-prediction-points-compact {
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    padding: 0.75rem 0.875rem;
    background: var(--bs-body-bg);
}

.futzoe-prediction-points-compact-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    cursor: pointer;
    list-style: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bs-secondary-color);
    user-select: none;
}

.futzoe-prediction-points-compact-summary::-webkit-details-marker {
    display: none;
}

.futzoe-prediction-points-compact[open] .futzoe-prediction-points-compact-chevron {
    transform: rotate(180deg);
}

.futzoe-prediction-points-compact-chevron {
    transition: transform 0.15s ease;
}

.futzoe-prediction-activity-list .list-group-item {
    border-left: 0;
    border-right: 0;
}

.futzoe-prediction-activity-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    background: var(--bs-body-bg);
}

.futzoe-prediction-activity-card--exact {
    border-color: rgba(var(--bs-success-rgb), 0.22);
    background: rgba(var(--bs-success-rgb), 0.04);
}

.futzoe-prediction-activity-card--winner {
    border-color: rgba(var(--bs-primary-rgb), 0.18);
    background: rgba(var(--bs-primary-rgb), 0.04);
}

.futzoe-prediction-activity-who {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--bs-secondary-color);
}

.futzoe-prediction-activity-who-icon {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.85;
}

.futzoe-prediction-activity-kind {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.futzoe-prediction-activity-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.futzoe-prediction-activity-score-team {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    min-width: 0;
}

.futzoe-prediction-activity-score-team--away {
    flex-direction: row-reverse;
}

.futzoe-prediction-activity-score-flag .futzoe-team-flag-img {
    width: 1.25rem;
    height: 0.9375rem;
    object-fit: cover;
}

.futzoe-prediction-activity-score-name {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    min-width: 0;
    max-width: 5.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.futzoe-prediction-activity-score-value {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.125rem 0.375rem;
    border-radius: 0.375rem;
    background: rgba(var(--bs-body-color-rgb), 0.06);
}

.futzoe-prediction-activity-winner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.futzoe-prediction-activity-winner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: rgba(var(--bs-primary-rgb), 0.12);
    color: var(--bs-primary);
    flex-shrink: 0;
}

.futzoe-prediction-activity-winner-icon .futzoe-team-flag-img {
    width: 1.125rem;
    height: 0.8125rem;
}

.futzoe-prediction-activity-winner-label {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.25;
}

.futzoe-prediction-activity-when {
    white-space: nowrap;
}

.futzoe-prediction-activity-empty {
    border: 1px dashed var(--bs-border-color);
    border-radius: var(--bs-border-radius-lg);
    background: rgba(var(--bs-body-color-rgb), 0.02);
}

.futzoe-prediction-activity-item:first-child {
    border-top: 0;
}

.futzoe-prediction-activity-pick {
    font-size: 0.9375rem;
    line-height: 1.35;
    margin-top: 0.125rem;
}

.futzoe-prediction-preview {
    line-height: 1.45;
}

@media (min-width: 576px) {
    .futzoe-predictions-summary .card-body {
        padding: 1.25rem;
    }

    .futzoe-predictions-summary-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .futzoe-poll-selector,
    .futzoe-poll-description,
    .futzoe-predictions-summary-title {
        flex: 1 1 auto;
        min-width: 0;
    }

    .futzoe-predictions-summary-actions {
        justify-content: flex-end;
        flex-shrink: 0;
    }

    .futzoe-predictions-ranking-btn {
        width: auto;
    }

    .futzoe-predictions-matchday-select + .select2-container {
        max-width: 10rem;
    }
}

@media (min-width: 992px) {
    .futzoe-predictions-feed {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }

    .futzoe-predictions-feed .futzoe-prediction-card {
        height: 100%;
        margin-bottom: 0;
    }

    .futzoe-predictions-feed .futzoe-predictions-tab-empty {
        grid-column: 1 / -1;
    }
}

.futzoe-predictions-tab-empty__card {
    border: 1px dashed var(--bs-border-color);
    background: linear-gradient(
        180deg,
        rgba(var(--bs-body-color-rgb), 0.03) 0%,
        rgba(var(--bs-body-bg-rgb), 1) 100%
    );
}

.futzoe-predictions-tab-empty__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--bs-secondary-color);
    background-color: rgba(var(--bs-body-color-rgb), 0.06);
}

.futzoe-predictions-tab-empty__icon--success {
    color: var(--bs-success);
    background-color: rgba(var(--bs-success-rgb), 0.12);
}

.futzoe-predictions-tab-empty__icon--primary {
    color: var(--bs-primary);
    background-color: rgba(var(--bs-primary-rgb), 0.12);
}

.futzoe-predictions-tab-empty__lead {
    max-width: 22rem;
    line-height: 1.5;
}

.futzoe-predictions-tab-empty__actions {
    max-width: 20rem;
}

.futzoe-predictions-tab-empty__actions .btn {
    min-height: 2.75rem;
}

@media (max-width: 575.98px) {
    .futzoe-predictions-stat {
        min-height: 3.75rem;
        padding: 0.5rem 0.25rem;
    }

    .futzoe-predictions-stat-value {
        font-size: 1.25rem;
    }

    .futzoe-predictions-stat-label {
        font-size: 0.625rem;
        letter-spacing: 0.02em;
    }

    .futzoe-predictions-stat-label-long {
        display: none;
    }

    .futzoe-predictions-stat-label-short {
        display: inline;
    }

    .futzoe-prediction-offcanvas {
        --bs-offcanvas-width: 100%;
    }

    .futzoe-predictions-save-all-btn {
        white-space: nowrap;
    }

    .futzoe-predictions-tabs .nav-link {
        padding-inline: 0.5rem;
    }

    .futzoe-prediction-mode .futzoe-prediction-mode-btn,
    .futzoe-prediction-winner-btns .futzoe-prediction-winner-btn {
        min-height: 3rem;
    }

    .futzoe-prediction-team-name {
        font-size: 0.875rem;
    }

    .futzoe-prediction-winner-btns .futzoe-prediction-winner-btn {
        font-size: 0.75rem;
        padding-inline: 0.25rem;
    }
}
