/* Results page overrides — extends scores.css */

/* ── Page tabs ── */
.rs-page-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 10px;
    padding: 4px;
}
.rs-page-tab {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
    padding: 6px 14px;
    border-radius: 7px;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
}
.rs-page-tab:hover { color: #f9fafb; }
.rs-page-tab--active {
    background: #374151;
    color: #f9fafb;
    cursor: default;
}

/* ── Date nav — light pills for past dates ── */
.rs-date-btn {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 20px;
    color: #9ca3af;
    font-size: 13px;
    font-family: inherit;
    padding: 5px 14px;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.rs-date-btn:hover { border-color: #6b7280; color: #f9fafb; }
.rs-date-btn--active {
    background: #1f2937;
    border-color: #f9fafb;
    color: #f9fafb;
    font-weight: 600;
}

/* ── Day header (week mode) ── */
.rs-day-header {
    font-size: 13px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 14px 4px 6px;
    border-bottom: 1px solid #1f2937;
    margin-bottom: 4px;
}
.rs-day-header:first-child { padding-top: 4px; }

/* ── Empty state ── */
.rs-empty {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    text-align: center;
    padding: 48px 24px;
}
.rs-empty__icon { font-size: 40px; margin-bottom: 12px; }
.rs-empty__text { font-size: 14px; color: #6b7280; }
.rs-empty__cta {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background: #e8192c;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
}
.rs-empty__cta:hover { background: #c8152a; }
