/* ============================================================
   Rotowizards — Cheat Sheet Creator
   ============================================================ */

/* ── Break out of Astra container ────────────────────────── */
body.page-template-page-cheat-sheet {
    background: var(--rw-dark, #0A0F1E) !important;
}

body.page-template-page-cheat-sheet .ast-container,
body.page-template-page-cheat-sheet #content,
body.page-template-page-cheat-sheet #primary,
body.page-template-page-cheat-sheet .site-content,
body.page-template-page-cheat-sheet .ast-article-single,
body.page-template-page-cheat-sheet .entry-content,
body.page-template-page-cheat-sheet .ast-article-post {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    background: var(--rw-dark, #0A0F1E) !important;
}

/* ── Page wrapper ────────────────────────────────────────── */
.rw-cs-page {
    background: var(--rw-dark, #0A0F1E);
    color: var(--rw-text, #F9FAFB);
    min-height: 100vh;
    width: 100%;
}

.rw-cs-page h1,
.rw-cs-page h2,
.rw-cs-page h3,
.rw-cs-page h4,
.rw-cs-page p,
.rw-cs-page label,
.rw-cs-page span,
.rw-cs-page a {
    color: inherit;
}

/* ── Hero ────────────────────────────────────────────────── */
.rw-cs-hero {
    background: var(--rw-surface, #111827);
    padding: 56px 24px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--rw-border, rgba(255,255,255,0.08));
}

.rw-cs-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16,185,129,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,185,129,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.rw-cs-hero-inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.rw-cs-page .rw-highlight {
    background: var(--rw-gradient, linear-gradient(135deg, #0ABFBC, #7C3AED));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rw-cs-hero-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 0 16px rgba(16,185,129,0.4));
}

.rw-cs-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.rw-cs-tagline {
    font-size: 1.1rem;
    color: rgba(249,250,251,0.7);
    margin: 0;
}

/* ── Section / inner ─────────────────────────────────────── */
.rw-cs-section {
    padding: 40px 24px 80px;
}

.rw-cs-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ── Gate (not logged in) ────────────────────────────────── */
.rw-cs-gate {
    background: var(--rw-surface, #111827);
    border: 1px solid var(--rw-border, rgba(255,255,255,0.08));
    border-radius: 16px;
    padding: 56px 32px;
    text-align: center;
    max-width: 520px;
    margin: 40px auto;
}

.rw-cs-gate-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.rw-cs-gate h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.rw-cs-gate p {
    color: rgba(249,250,251,0.7);
    margin: 0 0 28px;
}

.rw-cs-gate-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Cards ───────────────────────────────────────────────── */
.rw-cs-card {
    background: var(--rw-surface, #111827);
    border: 1px solid var(--rw-border, rgba(255,255,255,0.08));
    border-radius: 16px;
    overflow: hidden;
}

.rw-cs-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--rw-border, rgba(255,255,255,0.08));
    gap: 12px;
    flex-wrap: wrap;
}

.rw-cs-card-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rw-cs-collapse-btn {
    font-size: 0.75rem;
    padding: 4px 10px;
    opacity: 0.7;
}

.rw-cs-collapse-btn:hover {
    opacity: 1;
}

.rw-cs-settings-panel-hidden + .rw-cs-filter-notice {
    margin-top: 0;
}

.rw-cs-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.rw-cs-btn-primary {
    background: #10B981;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.rw-cs-btn-primary:hover  { background: #059669; }
.rw-cs-btn-primary:active { transform: scale(0.97); }
.rw-cs-btn-primary:disabled {
    background: #374151;
    color: #6B7280 !important;
    cursor: not-allowed;
}

/* Save Stack — orange to match /my-team/ Save Team button. Lives in the
   Draft mode bar; margin-left:auto pushes it to the right side of the row. */
#rw-cs-save-btn {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    box-shadow: 0 2px 12px rgba(217,119,6,0.35);
}
#rw-cs-save-btn:hover {
    background: linear-gradient(135deg, #B45309, #D97706);
    box-shadow: 0 4px 18px rgba(217,119,6,0.5);
}
.rw-cs-mode-bar #rw-cs-save-btn {
    margin-left: auto;
}

.rw-cs-btn-ghost {
    background: transparent;
    color: rgba(249,250,251,0.7) !important;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 9px 20px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.rw-cs-btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.25);
    color: #F9FAFB !important;
}

/* ── Single Sheet View button ────────────────────────────── */
#rw-cs-pv-toggle-btn {
    background: linear-gradient(135deg, #7C3AED, #9F5FF0);
    color: #fff !important;
    border: none;
}
#rw-cs-pv-toggle-btn:hover {
    background: linear-gradient(135deg, #6D28D9, #7C3AED);
    color: #fff !important;
}

/* ── Saved sheets list ───────────────────────────────────── */
#rw-cs-sheets-list {
    padding: 8px 0;
}

.rw-cs-sheet-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 12px;
    flex-wrap: wrap;
    transition: background 0.15s;
}
.rw-cs-sheet-card:last-child { border-bottom: none; }
.rw-cs-sheet-card:hover      { background: rgba(16,185,129,0.04); }

.rw-cs-sheet-card-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.rw-cs-sheet-card-info strong {
    font-weight: 600;
    font-size: 0.95rem;
    color: #F9FAFB;
}
.rw-cs-sheet-card-info span {
    font-size: 0.8rem;
    color: rgba(249,250,251,0.5);
}

.rw-cs-sheet-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.rw-cs-sheet-card--active {
    border-left: 3px solid #10B981;
    background: rgba(16,185,129,0.04);
}

.rw-cs-active-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(16,185,129,0.12);
    color: #10B981 !important;
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.rw-cs-btn-load {
    background: rgba(16,185,129,0.12);
    color: #10B981 !important;
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.rw-cs-btn-load:hover { background: rgba(16,185,129,0.22); }

.rw-cs-btn-delete {
    background: rgba(239,68,68,0.1);
    color: #EF4444 !important;
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.rw-cs-btn-delete:hover { background: rgba(239,68,68,0.2); }

.rw-cs-btn-rename {
    background: rgba(148,163,184,0.08);
    color: #94A3B8 !important;
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.rw-cs-btn-rename:hover { background: rgba(148,163,184,0.16); }

.rw-cs-btn-rename-save {
    background: rgba(16,185,129,0.12);
    color: #10B981 !important;
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.rw-cs-btn-rename-save:hover { background: rgba(16,185,129,0.22); }

.rw-cs-btn-rename-cancel {
    background: transparent;
    color: #94A3B8 !important;
    border: 1px solid rgba(148,163,184,0.18);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.rw-cs-rename-input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(16,185,129,0.4);
    border-radius: 6px;
    color: #F9FAFB;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 4px 10px;
    width: 260px;
    max-width: 100%;
    outline: none;
}
.rw-cs-rename-input:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 2px rgba(16,185,129,0.15);
}

.rw-cs-loading,
.rw-cs-empty {
    padding: 24px;
    text-align: center;
    color: rgba(249,250,251,0.45);
    font-size: 0.9rem;
    margin: 0;
}

/* ── New Sheet Form ──────────────────────────────────────── */
.rw-cs-new-form {
    padding: 0;
}

.rw-cs-new-form form {
    padding: 24px;
}

.rw-cs-form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.rw-cs-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 140px;
}

.rw-cs-field-wide { flex: 1; min-width: 200px; }
.rw-cs-field-sm   { max-width: 100px; }

.rw-cs-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(249,250,251,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rw-cs-field input,
.rw-cs-field select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #F9FAFB;
    padding: 10px 12px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.rw-cs-field input:focus,
.rw-cs-field select:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.rw-cs-field select option { background: #1F2937; color: #F9FAFB; }

/* ── No-league hint ──────────────────────────────────────── */
.rw-cs-league-hint {
    margin: 6px 0 0;
    font-size: 0.82rem;
    color: #F59E0B;
}
.rw-cs-league-hint a { color: #F59E0B; text-decoration: underline; }
.rw-cs-league-hint a:hover { color: #FCD34D; }

/* ── Roster template ─────────────────────────────────────── */
.rw-cs-roster-template {
    background: rgba(16,185,129,0.04);
    border: 1px solid rgba(16,185,129,0.15);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.rw-cs-template-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #10B981;
}

.rw-cs-template-note {
    font-size: 0.85rem;
    color: rgba(249,250,251,0.55);
    margin: 0 0 16px;
}
.rw-cs-template-note strong { color: rgba(249,250,251,0.8); }

.rw-cs-spots-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rw-cs-spot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rw-cs-spot-item input {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #F9FAFB;
    padding: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    width: 56px;
    transition: border-color 0.2s;
    -moz-appearance: textfield;
}
.rw-cs-spot-item input::-webkit-outer-spin-button,
.rw-cs-spot-item input::-webkit-inner-spin-button { -webkit-appearance: none; }
.rw-cs-spot-item input:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}

.rw-cs-form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Position badges ─────────────────────────────────────── */
.rw-cs-pos-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 5px;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

.rw-cs-pos-qb,  .rw-cs-pos-QB  { background: rgba(239,68,68,0.28);   color: #FF6B6B; border: 1px solid rgba(239,68,68,0.5); }
.rw-cs-pos-rb,  .rw-cs-pos-RB  { background: rgba(16,185,129,0.28);  color: #2EE8A0; border: 1px solid rgba(16,185,129,0.5); }
.rw-cs-pos-wr,  .rw-cs-pos-WR  { background: rgba(139,92,246,0.28);  color: #C084FC; border: 1px solid rgba(139,92,246,0.5); }
.rw-cs-pos-te,  .rw-cs-pos-TE  { background: rgba(245,158,11,0.28);  color: #FBBF24; border: 1px solid rgba(245,158,11,0.5); }
.rw-cs-pos-k,   .rw-cs-pos-K   { background: rgba(148,163,184,0.22); color: #CBD5E1; border: 1px solid rgba(148,163,184,0.4); }
.rw-cs-pos-def, .rw-cs-pos-DEF { background: rgba(6,182,212,0.28);   color: #22D3EE; border: 1px solid rgba(6,182,212,0.5); }

/* ── Sheet table toolbar ─────────────────────────────────── */
.rw-cs-sheet-wrap {
    background: var(--rw-surface, #111827);
    border: 1px solid var(--rw-border, rgba(255,255,255,0.08));
    border-radius: 16px;
    overflow: hidden;
}

.rw-cs-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Draft mode bar ──────────────────────────────────────── */
.rw-cs-mode-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

.rw-cs-mode-toggle {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}

.rw-cs-mode-btn {
    padding: 6px 18px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: rgba(249,250,251,0.5);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.rw-cs-mode-btn.active {
    background: rgba(124,58,237,0.35);
    color: #F9FAFB;
}
.rw-cs-mode-btn:not(.active):hover {
    color: rgba(249,250,251,0.8);
}

.rw-cs-budget-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* display:flex above wins over the UA's [hidden]{display:none}, so restore
   the hidden behavior explicitly when the JS sets the attribute. */
.rw-cs-budget-wrap[hidden] {
    display: none;
}

.rw-cs-budget-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(249,250,251,0.55);
    white-space: nowrap;
}

.rw-cs-budget-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    overflow: hidden;
}

.rw-cs-budget-symbol {
    padding: 0 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #10B981;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.rw-cs-budget-input {
    background: transparent;
    border: none;
    color: #F9FAFB;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 10px;
    width: 80px;
    outline: none;
    -moz-appearance: textfield;
}
.rw-cs-budget-input::-webkit-outer-spin-button,
.rw-cs-budget-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ── Display limits bar ──────────────────────────────────── */
.rw-cs-limits {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.rw-display-limits {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
}

.rw-display-limits-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(249,250,251,0.45);
    white-space: nowrap;
}

.rw-display-limits-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.rw-limit-group {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.rw-limit-group select {
    background: rgba(255,255,255,0.05);
    color: #F9FAFB;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 0.82rem;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s;
}

.rw-limit-group select:focus {
    outline: none;
    border-color: #10B981;
}

.rw-limit-group select option { background: #1F2937; }

/* Position-colored labels */
.rw-limit-qb  { color: #FF6B6B; }
.rw-limit-rb  { color: #2EE8A0; }
.rw-limit-wr  { color: #C084FC; }
.rw-limit-te  { color: #FBBF24; }
.rw-limit-k   { color: #CBD5E1; }
.rw-limit-def { color: #22D3EE; }

/* ── Max Bid column — hidden in snake mode, shown in auction. Read-only
       display (Pro only); purple to distinguish from the green Market estimate. ─ */
.rw-cs-col-value { display: none; }
.rw-cs-auction-mode .rw-cs-col-value {
    display: table-cell;
    width: 75px;
    text-align: right;
    color: #B289FC;       /* purple — matches the AURA-925 point on the AURA gradient */
    font-weight: 700;     /* match the bold weight of elite AURA so the purple reads the same */
    font-variant-numeric: tabular-nums;
}

/* ── Market column — Phase 5; same auction-mode visibility rule ── */
.rw-cs-col-market { display: none; }
.rw-cs-auction-mode .rw-cs-col-market {
    display: table-cell;
    width: 70px;
    text-align: right;
    color: #34D399;       /* green — distinguishes "market estimate" from user-editable Max Bid */
    font-variant-numeric: tabular-nums;
}

/* ── Market upgrade banner — Phase 6; shown only in auction mode when
       there's no prior-draft data for the active league. ── */
.rw-cs-market-banner {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 10px 0;
    padding: 12px 16px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(10,191,188,0.08) 0%, rgba(124,58,237,0.08) 100%);
    border: 1px solid rgba(124,58,237,0.35);
    color: rgba(249,250,251,0.85);
    font-size: 13px;
    line-height: 1.45;
}
.rw-cs-auction-mode .rw-cs-market-banner:not([hidden]) { display: flex; }
.rw-cs-market-banner-icon {
    font-size: 18px;
    color: #0ABFBC;
    flex: 0 0 auto;
    align-self: flex-start;
    margin-top: 1px;
}
.rw-cs-market-banner-text { flex: 1 1 240px; min-width: 0; }
.rw-cs-market-banner-title {
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.rw-cs-mb-enable { color: #FFFFFF; }
.rw-cs-mb-prophecy { font-weight: 800; }
.rw-cs-market-banner-link {
    flex: 0 0 auto;
    padding: 8px 16px;
    border-radius: 6px;
    background: linear-gradient(135deg, #0ABFBC, #7C3AED);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: filter 0.15s ease, box-shadow 0.15s ease;
}
.rw-cs-market-banner-link:hover {
    filter: brightness(1.08);
    box-shadow: 0 4px 14px rgba(124,58,237,0.35);
    color: #FFFFFF;
}

.rw-cs-toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.rw-cs-sheet-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rw-cs-data-badge {
    background: rgba(16,185,129,0.12);
    color: #10B981;
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.rw-cs-toolbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rw-cs-filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(249,250,251,0.55);
    white-space: nowrap;
}

.rw-cs-filter-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #F9FAFB;
    padding: 8px 12px;
    font-size: 0.875rem;
    width: 180px;
    transition: border-color 0.2s;
}
.rw-cs-filter-input:focus {
    outline: none;
    border-color: #10B981;
}
.rw-cs-filter-input::placeholder { color: rgba(249,250,251,0.35); }

#rw-cs-pos-filter,
.rw-cs-pos-filter,
.rw-cs-rankby-select {
    background-color: #1F2937 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 8px !important;
    color: #F9FAFB !important;
    padding: 8px 28px 8px 10px !important;
    font-size: 0.875rem !important;
    transition: border-color 0.2s;
    cursor: pointer !important;
    forced-color-adjust: none;
}
#rw-cs-pos-filter:focus,
.rw-cs-pos-filter:focus,
.rw-cs-rankby-select:focus { outline: none; border-color: #10B981 !important; }
#rw-cs-pos-filter option,
.rw-cs-pos-filter option,
.rw-cs-rankby-select option { background: #1F2937 !important; color: #F9FAFB !important; }

/* ── Data source note ────────────────────────────────────── */
.rw-cs-data-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(245,158,11,0.07);
    border-top: 1px solid rgba(245,158,11,0.15);
    border-bottom: 1px solid rgba(245,158,11,0.15);
    font-size: 1.05rem;
    color: #F9FAFB;
    line-height: 1.5;
}

.rw-cs-data-note strong { color: #FCD34D; }
.rw-cs-data-note em     { color: rgba(249,250,251,0.6); font-style: normal; }

.rw-cs-data-note-icon {
    font-size: 1rem;
    color: #FCD34D;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Table ───────────────────────────────────────────────── */
.rw-cs-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.rw-cs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    line-height: 1.2;
}

.rw-cs-table thead th {
    background: rgba(255,255,255,0.03);
    padding: 5px 12px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(249,250,251,0.45);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    white-space: nowrap;
    cursor: default;
    user-select: none;
}

.rw-cs-table thead th[data-sort] {
    cursor: pointer;
}
.rw-cs-table thead th[data-sort]:hover { color: #F9FAFB; }

.rw-cs-table thead th.sort-asc::after  { content: ' ▲'; font-size: 0.65rem; }
.rw-cs-table thead th.sort-desc::after { content: ' ▼'; font-size: 0.65rem; }

.rw-cs-table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.1s;
}
.rw-cs-table tbody tr:last-child { border-bottom: none; }
.rw-cs-table tbody tr:hover      { background: rgba(16,185,129,0.04); }

.rw-cs-table tbody tr.rw-cs-row-ghost {
    background: rgba(16,185,129,0.08) !important;
    border: 1px dashed rgba(16,185,129,0.4);
    opacity: 0.8;
}

.rw-cs-table tbody td {
    padding: 0 12px;
    height: 16px;
    max-height: 16px;
    vertical-align: middle;
    white-space: nowrap;
    color: rgba(249,250,251,0.9);
}

/* Column widths */
.rw-cs-col-rank    { width: 90px; }
.rw-cs-col-posrank { width: 60px;  }
.rw-cs-col-name    { min-width: 160px; white-space: normal !important; }
.rw-cs-col-name .rw-player-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-align: left;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.25);
    text-underline-offset: 2px;
}
.rw-cs-col-name .rw-player-btn:hover {
    color: #0ABFBC;
    text-decoration-color: #0ABFBC;
}
.rw-cs-col-pos     { width: 60px;  }
.rw-cs-col-team    { width: 60px;  }
.rw-cs-col-pts     { width: 70px;  text-align: right; }
.rw-cs-col-ptsg    { width: 65px;  text-align: right; }
.rw-cs-col-vorw    { width: 80px;  text-align: right; }
.rw-cs-col-adp     { width: 60px;  text-align: right; }
.rw-cs-col-status  { width: 120px; }

/* Drag handle */
.rw-cs-drag-handle {
    display: inline-block;
    cursor: grab;
    color: rgba(249,250,251,0.25);
    font-size: 1rem;
    margin-right: 6px;
    vertical-align: middle;
    line-height: 1;
    transition: color 0.15s;
}
.rw-cs-drag-handle:hover { color: rgba(249,250,251,0.6); }

/* Rank input */
.rw-cs-rank-input {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    color: #F9FAFB;
    padding: 0 4px;
    font-size: 0.8rem;
    font-weight: 600;
    width: 52px;
    height: 13px;
    box-sizing: border-box;
    line-height: 13px;
    text-align: center;
    -moz-appearance: textfield;
    vertical-align: middle;
    transition: border-color 0.15s;
}
.rw-cs-rank-input::-webkit-outer-spin-button,
.rw-cs-rank-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.rw-cs-rank-input:focus {
    outline: none;
    border-color: #10B981;
    background: rgba(16,185,129,0.08);
}

/* Auction value input — PRESERVED FOR A FUTURE COLUMN.
   Max Bid is now a read-only display, so these editable-input styles are
   currently unused. Kept (commented) because a future, yet-to-be-named
   column will reuse this exact editable $-input look. Re-enable then. */
/*
.rw-cs-value-prefix {
    color: #10B981;
    font-size: 0.75rem;
    margin-right: 1px;
    vertical-align: middle;
}
.rw-cs-value-input {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    color: #F9FAFB;
    padding: 0 4px;
    font-size: 0.8rem;
    font-weight: 600;
    width: 44px;
    height: 13px;
    box-sizing: border-box;
    line-height: 13px;
    text-align: center;
    -moz-appearance: textfield;
    vertical-align: middle;
    transition: border-color 0.15s;
}
.rw-cs-value-input::-webkit-outer-spin-button,
.rw-cs-value-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.rw-cs-value-input:focus {
    outline: none;
    border-color: #10B981;
    background: rgba(16,185,129,0.08);
}
*/

/* Locked position limit (0 roster spots in this league) */
.rw-pos-limit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Positional rank cell */
.rw-cs-col-posrank {
    color: rgba(249,250,251,0.45);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Aura column — featured / recommended */
.rw-cs-col-vorw-header {
    color: #34D399 !important;
    border-bottom: 2px solid rgba(52,211,153,0.55) !important;
    position: relative;
}
.rw-cs-col-vorw-header:hover { color: #6EE7B7 !important; }

.rw-cs-aura-star {
    font-size: 0.7em;
    opacity: 0.8;
    margin-left: 1px;
}

/* Subtle column stripe on all Aura body cells */
td.rw-cs-col-vorw {
    background: rgba(52,211,153,0.04);
    border-left:  1px solid rgba(52,211,153,0.08);
    border-right: 1px solid rgba(52,211,153,0.08);
}

/* AURA text color is computed per value in JS (auraColor) and applied inline
   as a continuous purple(1000)→blue(500)→teal(0) gradient (negatives = light
   red). The elite tier keeps its bold weight for emphasis. */
td.rw-cs-col-vorw[data-aura-tier="elite"] { font-weight: 700; }

/* Aura callout in table hint */
.rw-cs-hint-aura {
    color: #34D399;
}

/* Highlighted words in data note */
.rw-cs-grad {
    color: #F9FAFB;
}

/* AURA word in the data note — must stand out the most */
.rw-cs-aura-label {
    background: linear-gradient(135deg, #0ABFBC, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.15em;
    letter-spacing: 0.12em;
}

/* Injury status badges */
.rw-cs-status {
    display: inline-block;
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.rw-cs-status-out   { background: rgba(239,68,68,0.18);  color: #F87171; }
.rw-cs-status-doubt { background: rgba(251,146,60,0.18); color: #FB923C; }
.rw-cs-status-q     { background: rgba(250,204,21,0.15); color: #FDE047; }
.rw-cs-status-other { background: rgba(156,163,175,0.12); color: #9CA3AF; }

/* Injury flag next to player name */
.rw-cs-injury-flag {
    color: #F59E0B;
    font-size: 0.65rem;
    margin-left: 4px;
    vertical-align: middle;
    cursor: default;
}

/* ── Table hint ──────────────────────────────────────────── */
.rw-cs-table-hint {
    padding: 12px 24px;
    font-size: 0.78rem;
    color: rgba(249,250,251,0.35);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin: 0;
}
.rw-cs-table-hint strong { color: rgba(249,250,251,0.6); }

.rw-cs-hint-draft-assistant {
    background: var(--rw-gradient, linear-gradient(135deg, #0ABFBC, #7C3AED));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1rem;
}

/* ── Toast notification ──────────────────────────────────── */
.rw-cs-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #10B981;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.rw-cs-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.rw-cs-toast--muted {
    background: #374151;
    font-weight: 400;
    font-size: 0.8rem;
    padding: 8px 18px;
}

/* ── Print view ──────────────────────────────────────────── */
.rw-cs-pv-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    gap: 12px;
    flex-wrap: wrap;
}

.rw-cs-pv-title {
    font-size: 1rem;
    font-weight: 700;
    color: #F9FAFB;
}

.rw-cs-pv-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.rw-cs-pv-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0 6px;
    padding: 10px 14px;
    align-items: start;
}

.rw-cs-pv-col {
    min-width: 0;
}

.rw-cs-pv-col-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
    border-radius: 4px 4px 0 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* ALL column header */
.rw-cs-pv-col-hd-all {
    background: rgba(255,255,255,0.07);
    color: #F9FAFB;
    border: 1px solid rgba(255,255,255,0.14);
}

/* Expand button at bottom of truncated print-view columns */
.rw-cs-pv-expand-btn {
    display: block;
    width: 100%;
    margin-top: 4px;
    padding: 5px 0;
    background: none;
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 4px;
    color: var(--rw-text-muted, #9CA3AF);
    font-size: 0.72rem;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, color 0.15s;
}

.rw-cs-pv-expand-btn:hover {
    border-color: var(--rw-accent, #0ABFBC);
    color: var(--rw-accent, #0ABFBC);
}

/* Position badge inside ALL column rows */
.rw-cs-pv-pos-badge {
    font-size: 0.5rem;
    font-weight: 800;
    padding: 1px 3px;
    border-radius: 3px;
    letter-spacing: 0.03em;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
}

.rw-cs-pv-col-count {
    font-weight: 500;
    opacity: 0.75;
    font-size: 0.6rem;
}

.rw-cs-pv-row {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    min-width: 0;
}

.rw-cs-pv-row:nth-child(even) { background: rgba(255,255,255,0.02); }

.rw-cs-pv-out   { background: rgba(239,68,68,0.1)  !important; }
.rw-cs-pv-doubt { background: rgba(251,146,60,0.1) !important; }
.rw-cs-pv-q     { background: rgba(250,204,21,0.07) !important; }

/* pos rank: QB1, RB3 etc. */
.rw-cs-pv-pr {
    flex-shrink: 0;
    width: 26px;
    font-size: 0.56rem;
    color: rgba(249,250,251,0.35);
    font-weight: 600;
}

/* player name */
.rw-cs-pv-nm {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.63rem;
    font-weight: 500;
    color: #F9FAFB;
}

/* team abbrev */
.rw-cs-pv-tm {
    flex-shrink: 0;
    width: 22px;
    font-size: 0.55rem;
    color: rgba(249,250,251,0.4);
    text-align: right;
}

/* aura (vorw) value */
.rw-cs-pv-pt {
    flex-shrink: 0;
    width: 32px;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: right;
    background: linear-gradient(135deg, #0ABFBC, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* $ value override */
.rw-cs-pv-pt.rw-cs-pv-pt-val {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #10B981;
    background-clip: unset;
    color: #10B981;
}

/* Overall Rank override — gold */
.rw-cs-pv-pt.rw-cs-pv-pt-rank {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #F5C518;
    background-clip: unset;
    color: #F5C518;
}

/* Stat selector — segmented buttons in the single sheet view */
.rw-cs-pv-stat-group {
    display: inline-flex;
    gap: 6px;
}
.rw-cs-pv-stat-btn {
    border-color: rgba(16,185,129,0.4);
    color: #10B981 !important;
}
.rw-cs-pv-stat-btn:hover {
    background: rgba(16,185,129,0.08);
    border-color: #10B981;
}
/* Currently-displayed stat */
.rw-cs-pv-stat-btn.is-active {
    background: rgba(16,185,129,0.18);
    border-color: #10B981;
    box-shadow: inset 0 0 0 1px #10B981;
    font-weight: 700;
}
/* Pro-only stat, locked for free members */
.rw-cs-pv-stat-btn.is-locked {
    opacity: 0.6;
    color: #94A3B8 !important;
    border-color: rgba(148,163,184,0.3);
}
.rw-cs-pv-stat-btn.is-locked:hover {
    background: rgba(148,163,184,0.08);
    border-color: rgba(148,163,184,0.55);
}
.rw-cs-pv-lock { display: none; }
.rw-cs-pv-stat-btn.is-locked .rw-cs-pv-lock { display: inline; }

/* Hide filter/rank controls when print view is active */
.rw-cs-print-active .rw-cs-filter-label,
.rw-cs-print-active #rw-cs-filter,
.rw-cs-print-active #rw-cs-pos-filter,
.rw-cs-print-active .rw-cs-rankby-select { display: none; }

/* Single Sheet View — let the data span the full viewport on large monitors.
   Overrides the 1200px content cap + section side padding only while the
   view is active (the editor view stays at its normal width). The
   .rw-cs-print-active class sits on #rw-cs-sheet-wrap, a descendant of these
   containers, so we widen the ancestors with :has(). */
.rw-cs-section:has(.rw-cs-print-active) {
    padding-left: 16px;
    padding-right: 16px;
}
.rw-cs-inner:has(.rw-cs-print-active) {
    max-width: 100%;
}

.rw-cs-pv-empty {
    padding: 8px 4px;
    color: rgba(249,250,251,0.25);
    font-size: 0.7rem;
    text-align: center;
    margin: 0;
}

/* Single Sheet View — "this is for printing" notice. Hidden by default;
   shown only on small screens (see the screen-scoped media query below) and
   never printed. */
.rw-cs-pv-mobile-note {
    display: none;
    margin: 16px 0 0;
    padding: 16px 18px;
    border: 1px solid rgba(10,191,188,0.3);
    border-radius: 10px;
    background: rgba(10,191,188,0.06);
    color: rgba(249,250,251,0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}
.rw-cs-pv-mobile-note-icon { display: block; font-size: 1.6rem; margin-bottom: 6px; }

/* ── Print media ─────────────────────────────────────────── */
@media print {
    @page { size: letter landscape; margin: 0.4in; }

    /* Hide everything on the page except the sheet wrap */
    .rw-cs-hero,
    #rw-cs-my-sheets-card,
    #rw-cs-new-form,
    .rw-cs-toolbar,
    #rw-cs-edit-area,
    .rw-cs-pv-mobile-note,
    .rw-cs-pv-actions { display: none !important; }

    /* Reset card chrome for clean print */
    .rw-cs-sheet-wrap {
        border: none !important;
        border-radius: 0 !important;
        background: #fff !important;
        color: #000 !important;
    }

    #rw-cs-print-view { display: block !important; }

    .rw-cs-pv-bar {
        background: transparent;
        border-bottom: 1px solid #ccc;
        padding: 4px 0 8px;
    }

    .rw-cs-pv-title { color: #000; font-size: 0.9rem; }

    .rw-cs-pv-grid { padding: 4px 0; gap: 0 4px; }

    .rw-cs-pv-col-hd {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .rw-cs-pv-row         { border-bottom: 1px solid #eee; background: #fff !important; }
    .rw-cs-pv-row:nth-child(even) { background: #f9f9f9 !important; }
    .rw-cs-pv-out         { background: #fde8e8 !important; }
    .rw-cs-pv-doubt       { background: #fef0e6 !important; }
    .rw-cs-pv-q           { background: #fefce8 !important; }

    .rw-cs-pv-nm { color: #111; }
    .rw-cs-pv-pr { color: #888; }
    .rw-cs-pv-tm { color: #666; }
    .rw-cs-pv-pt {
        background: none;
        -webkit-text-fill-color: #0D6E6E;
        color: #0D6E6E;
    }
    .rw-cs-pv-pt.rw-cs-pv-pt-val {
        -webkit-text-fill-color: #0A7A50;
        color: #0A7A50;
    }
    .rw-cs-pv-pt.rw-cs-pv-pt-rank {
        -webkit-text-fill-color: #B8860B;
        color: #B8860B;
    }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .rw-cs-section    { padding: 24px 16px 60px; }
    .rw-cs-toolbar    { flex-direction: column; align-items: stretch; }
    .rw-cs-toolbar-right { justify-content: flex-start; }
    .rw-cs-filter-input { width: 100%; }
    .rw-cs-form-row   { flex-direction: column; }
    .rw-cs-field-sm   { max-width: 100%; }
    .rw-cs-spots-grid { gap: 12px; }
    .rw-cs-spot-item input { width: 50px; }
    .rw-cs-table      { font-size: 0.8rem; }
    .rw-cs-table thead th { padding: 5px 8px; }
    .rw-cs-table tbody td { padding: 1px 8px; }
    .rw-cs-market-banner-text { flex-basis: 100%; }
    .rw-cs-market-banner-link { flex: 1 1 100%; text-align: center; }
}

/* Single Sheet View on phones: the multi-column sheet is unreadable on-screen,
   so hide the grid and show the "print it" notice instead. Scoped to `screen`
   so it never affects the @media print output — the full-size sheet still
   prints (or saves to PDF) fine from a phone. */
@media screen and (max-width: 768px) {
    #rw-cs-print-view .rw-cs-pv-grid { display: none; }
    .rw-cs-pv-mobile-note { display: block; }
}

/* ── League / scoring selector bar ──────────────────────── */
.rw-cs-scoring-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--rw-border, rgba(255,255,255,0.08));
    flex-wrap: wrap;
}

.rw-team-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rw-team-sel-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rw-text-muted, #9CA3AF);
    white-space: nowrap;
}

.rw-team-sel-select {
    background: var(--rw-dark, #0A0F1E);
    color: var(--rw-text, #F9FAFB);
    border: 1px solid var(--rw-border, rgba(255,255,255,0.15));
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.rw-team-sel-select:hover,
.rw-team-sel-select:focus {
    border-color: var(--rw-accent, #0ABFBC);
}

.rw-team-sel-select option {
    background: #0A0F1E;
    color: #F9FAFB;
}

.rw-team-sel-prompt {
    font-size: 0.8rem;
    color: var(--rw-text-muted, #9CA3AF);
    font-style: italic;
}

.rw-team-sel-prompt a {
    color: var(--rw-accent, #0ABFBC);
    text-decoration: none;
}

.rw-team-sel-prompt a:hover {
    text-decoration: underline;
}

.rw-team-sheet-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--rw-text, #F9FAFB);
}

.rw-cs-filter-notice {
    /* Plain text flow, not flex — otherwise the inline <strong> and the text
       around it become separate flex items (cramped columns on mobile). The
       leading ⚠ sits inline with the sentence. */
    display: block;
    margin: 8px 0 0;
    padding: 8px 14px;
    background: rgba(251, 191, 36, 0.08);
    border-left: 3px solid #FBBF24;
    border-radius: 0 6px 6px 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--rw-text-muted, #9CA3AF);
}

.rw-cs-filter-notice[hidden] {
    display: none;
}

.rw-cs-filter-notice strong {
    color: #FBBF24;
}

/* ── AURA column locked (free members) ── */
.rw-cs-aura-locked .rw-cs-col-vorw {
    opacity: .35;
    filter: blur(3px);
    pointer-events: none;
    user-select: none;
}
.rw-cs-col-vorw-locked {
    opacity: 1 !important;
    filter: none !important;
    pointer-events: auto !important;
}
.rw-cs-aura-lock-link {
    color: #94A3B8;
    text-decoration: none;
    font-size: .8rem;
    white-space: nowrap;
}
.rw-cs-aura-lock-link:hover { color: #CBD5E1; }

/* ── Max Bid + Market columns are Pro-only — hidden entirely for free
       members. (.rw-cs-aura-locked is present on the page only for non-Pro
       users; !important overrides the auction-mode display rules above.) ── */
.rw-cs-aura-locked .rw-cs-col-value,
.rw-cs-aura-locked .rw-cs-col-market { display: none !important; }
