/**
 * Shared detail chrome for Player, Opposition and Match profiles.
 *
 * Frame only: gutters, tab bar, card surface, gold-left titles, table overflow.
 * Heroes and page layouts stay in each profile stylesheet.
 *
 * @package BTFC_Stats
 */

/* -------------------------------------------------------------------------
   Shell
   ------------------------------------------------------------------------- */

.btfc-player-archive,
.btfc-opp-archive,
.btfc-match-archive {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
}

/* -------------------------------------------------------------------------
   Tab bar
   ------------------------------------------------------------------------- */

.btfc-detail-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    background: #071B36;
    margin: 0 0 1rem;
    -webkit-overflow-scrolling: touch;
}

.btfc-detail-tab {
    appearance: none;
    border: 0;
    background: transparent;
    color: #d1d5db;
    padding: 0.75rem 1.1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.btfc-detail-tab.is-active {
    color: #ffffff;
    border-bottom-color: #F5B800;
}

@media (max-width: 480px) {
    .btfc-detail-tab {
        padding: 0.7rem 0.85rem;
        font-size: 0.6875rem;
    }
}

/* -------------------------------------------------------------------------
   Cards
   ------------------------------------------------------------------------- */

.btfc-detail-card {
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(7, 27, 54, 0.06);
    overflow: hidden;
    min-width: 0;
}

.btfc-detail-card-title {
    margin: 0;
    padding: 0.75rem 1.05rem;
    font-family: var(--font-heading, inherit);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #071B36 !important;
    border-left: 4px solid #F5B800;
}

.btfc-detail-card-body {
    padding: 0 1.05rem 1.05rem;
}

/* -------------------------------------------------------------------------
   Tables
   ------------------------------------------------------------------------- */

.btfc-detail-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
