﻿/* Reusable "Show Full Season" toggle */
.season-toggle {
    width: 100%;
    background: #f6f6f6;
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    padding: .75rem 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
    /* Mobile: text left, arrow right */
    justify-content: space-between;
    margin-top: 1rem; /* breathing room above button */
}

    .season-toggle .js-season-label {
        text-align: left;
    }

    /* Arrow wrapper (white rounded pill) */
    .season-toggle .chevron {
        color: rgb(253, 80, 0); /* orange arrow */
        background: #fff; /* white background */
        padding: .25rem;
        border-radius: 9999px; /* fully rounded */
        line-height: 1;
        font-size: 1.25rem; /* larger/stronger */
        font-weight: 700; /* bolder */
        transition: transform .2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .season-toggle.is-expanded .chevron {
        transform: rotate(180deg);
    }

/* Desktop: center label + arrow together */
@media (min-width: 768px) {
    .season-toggle {
        justify-content: center;
        gap: .75rem;
    }

        .season-toggle .js-season-label {
            text-align: center;
        }
}

/* class applied to “hidden” rows (JS toggles display) */
.season-extra-row {
    display: none;
}
