/* ATF Client Portal — Client-Specific Stylesheet
   Requires: atf-portal-base.css loaded first
   Source: d:\GC\scripts\alltimefavorites.com\cloudflare\public-assets\atf-client.css
   Served:  https://atfapps.alltimefavorites.com/public/atf-client.css
   Update:  gcloud storage cp "d:\GC\scripts\alltimefavorites.com\cloudflare\public-assets\atf-client.css" gs://atfpublic/atf-client.css --content-type "text/css"
*/

/* ── Dashboard Cards ──────────────────────────────────────── */
.dash-card {
    display: block;
    width: 90%;
    max-width: 380px;
    background: var(--atf-card-bg);
    border: 2px solid var(--atf-accent);
    border-radius: 10px;
    padding: 20px 24px;
    text-decoration: none;
    color: var(--atf-accent);
    font-size: clamp(16px, 4vw, 20px);
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    margin: 10px auto;
}
.dash-card:hover { background: var(--atf-accent-light); text-decoration: none; }
.dash-card .sub  { display: block; font-size: 13px; font-weight: normal; color: var(--atf-text-muted); margin-top: 6px; }

/* Green variant */
.dash-card-green { border-color: #006633; color: #006633; }
.dash-card-green:hover { background: #f0fff4; }

/* ── Info / Promo Cards ───────────────────────────────────── */
.info-card {
    display: inline-block;
    width: 90%;
    max-width: 340px;
    margin-top: 12px;
    background: var(--atf-card-bg);
    border: 2px solid var(--atf-accent);
    border-radius: 10px;
    padding: 18px 24px;
    text-decoration: none;
    color: var(--atf-accent);
    font-size: clamp(15px, 4vw, 18px);
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.info-card:hover { background: var(--atf-accent-light); text-decoration: none; }
.info-card .sub  { display: block; font-size: 13px; font-weight: normal; color: var(--atf-text-muted); margin-top: 6px; }

/* ── Event / Data Tables ──────────────────────────────────── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

table.events {
    border-collapse: collapse;
    width: 100%;
    max-width: 860px;
    margin: 0 auto 16px auto;
    font-size: clamp(12px, 3vw, 14px);
}
table.events th {
    background: var(--atf-accent);
    color: var(--atf-accent-text);
    padding: 9px 10px;
    text-align: left;
    white-space: nowrap;
}
table.events td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--atf-border);
    vertical-align: top;
}
table.events tr:nth-child(even) td { background: #f5f8ff; }

/* ── Color Swatches (settings page) ──────────────────────── */
.color-swatch {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #ccc;
    cursor: pointer;
    margin: 0 6px;
    transition: border-color .15s;
}
.color-swatch.selected,
.color-swatch:hover { border-color: var(--atf-accent); }
