/* www/html/css/command_center.css — V11.0
   Command-Center-Styles — V11.0: auch der SCHALTER in .cc-kill-panel folgt dem Zustand
   (grün = Trading möglich, rot = blockiert), nicht der Checkbox-Stellung. Historie: git log.
   Palette wie chart_I.css (bg #0e1117/#131722, panel #1e222d, card #161922/#2a2e39,
   border #363c4e/#2a2e39, accent #2962ff, up #089981, down #f23645, gold #f0b90b,
   text #d1d4dc/#787b86). */

/* ===== Overlay-Grundgerüst ===== */
#command-center {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 120000; /* über Bot-Dropdown (100000) und Live-Widgets (99999) */
    background: #0e1117;
    flex-direction: column;
    color: #d1d4dc;
}
#command-center.cc-visible { display: flex; }

/* ===== Header ===== */
.cc-header {
    height: 52px;
    flex-shrink: 0;
    background: #1e222d;
    border-bottom: 1px solid #363c4e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}
.cc-header-title { font-size: 16px; font-weight: bold; color: #d1d4dc; }
.cc-header-title i { color: #2962ff; margin-right: 8px; }
.cc-header-right { display: flex; align-items: center; gap: 16px; }
.cc-user-badge {
    font-size: 12px; color: #b2b5be;
    background: #2a2e39; border: 1px solid #363c4e; border-radius: 14px;
    padding: 4px 12px; display: inline-flex; align-items: center; gap: 6px;
}
.cc-user-badge i { color: #2962ff; }
.cc-close { cursor: pointer; color: #787b86; font-size: 18px; padding: 4px 6px; transition: color 0.2s; }
.cc-close:hover { color: #f23645; }

/* ===== Tab-Leiste ===== */
.cc-tabs {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
    background: #161922;
    border-bottom: 1px solid #2a2e39;
    padding: 0 12px;
    overflow-x: auto;
    scrollbar-width: thin;
}
.cc-tab {
    padding: 13px 18px;
    cursor: pointer;
    color: #787b86;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
    position: relative;
    user-select: none;
    transition: color 0.15s;
}
.cc-tab:hover { color: #d1d4dc; }
.cc-tab.active { color: #ffffff; }
.cc-tab.active::after {
    content: '';
    position: absolute;
    left: 10px; right: 10px; bottom: 0;
    height: 2px;
    background: #2962ff;
    border-radius: 2px 2px 0 0;
}
.cc-tab i { margin-right: 6px; }

/* ===== Body / Panels ===== */
.cc-body { flex: 1; overflow-y: auto; padding: 20px; }
.cc-panel { display: none; max-width: 1400px; margin: 0 auto; }
.cc-panel.active { display: block; animation: ccFadeIn 0.25s ease; }
@keyframes ccFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ===== Stat-Kacheln ===== */
.cc-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.cc-tile {
    background: #161922;
    border: 1px solid #2a2e39;
    border-radius: 10px;
    padding: 14px 16px;
}
.cc-tile-label { font-size: 11px; color: #787b86; font-weight: bold; letter-spacing: 0.4px; text-transform: uppercase; }
.cc-tile-value { font-size: 22px; font-weight: bold; color: #d1d4dc; margin: 8px 0 4px 0; font-variant-numeric: tabular-nums; }
.cc-tile-sub { font-size: 10px; color: #5d6375; }

/* ===== 2-Spalten-Bereich ===== */
.cc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 900px) { .cc-grid-2 { grid-template-columns: 1fr; } }

/* ===== Collapsible Cards (Muster .scout-card aus chart_I.css) ===== */
.cc-card {
    background: #161922;
    border: 1px solid #2a2e39;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}
.cc-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #1b1f29;
    cursor: pointer;
    user-select: none;
}
.cc-card-head:hover { background: #20242f; }
.cc-card-title { font-size: 12px; font-weight: bold; color: #787b86; letter-spacing: 0.5px; }
.cc-card-title i { margin-right: 6px; color: #2962ff; }
.cc-count {
    background: #2962ff; color: #fff;
    border-radius: 10px; padding: 1px 8px;
    font-size: 10px; margin-left: 6px;
}
.cc-chev { color: #787b86; font-size: 12px; transition: transform 0.25s; }
.cc-card.open .cc-chev { transform: rotate(180deg); }
.cc-card-body { display: none; padding: 14px 16px; }
.cc-card.open .cc-card-body { display: block; }

/* ===== Tabellen ===== */
.cc-table-scroll { overflow-x: auto; }
.cc-table { width: 100%; border-collapse: collapse; font-size: 12px; color: #d1d4dc; }
.cc-table th {
    text-align: left; font-size: 10px; color: #787b86; font-weight: bold;
    text-transform: uppercase; letter-spacing: 0.4px;
    padding: 0 8px 8px 0; border-bottom: 1px dashed #363c4e; white-space: nowrap;
}
.cc-table td { padding: 8px 8px 8px 0; border-bottom: 1px solid rgba(54,60,78,0.3); white-space: nowrap; font-variant-numeric: tabular-nums; }
.cc-table tr:last-child td { border-bottom: none; }
.cc-empty { text-align: center; color: #5d6375; font-style: italic; padding: 18px 0 !important; }
.cc-badge {
    display: inline-block;
    border: 1px solid;
    border-radius: 3px;
    padding: 1px 6px;
    font-size: 9px;
    font-weight: bold;
    letter-spacing: 0.4px;
}

/* ===== Donut + Legende ===== */
.cc-donut-wrap { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cc-donut { width: 150px; height: 150px; flex-shrink: 0; }
.cc-donut-legend { flex: 1; min-width: 200px; }
.cc-legend-row { display: flex; align-items: center; gap: 8px; font-size: 12px; margin-bottom: 8px; }
.cc-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cc-legend-name { color: #b2b5be; }
.cc-legend-val { margin-left: auto; color: #d1d4dc; font-weight: bold; font-variant-numeric: tabular-nums; }

/* ===== Konten-Karte ===== */
.cc-acc-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 0; border-bottom: 1px solid rgba(54,60,78,0.3);
    font-size: 13px;
}
.cc-acc-row:last-of-type { border-bottom: none; }
.cc-acc-name { color: #b2b5be; display: inline-flex; align-items: center; gap: 8px; }
.cc-acc-val { font-weight: bold; color: #d1d4dc; font-variant-numeric: tabular-nums; }
.cc-acc-note { font-size: 10px; color: #5d6375; margin-top: 10px; font-style: italic; }
.cc-muted { color: #5d6375 !important; font-weight: normal !important; font-style: italic; font-size: 11px; }

/* ===== Tacho (ccGauge, ab Phase 3 im Admin-Tab) ===== */
.cc-gauge { text-align: center; position: relative; }
.cc-gauge-val { font-size: 22px; font-weight: bold; margin-top: 4px; font-variant-numeric: tabular-nums; }   /* V6.0: unter den Nadel-Drehpunkt statt in den Zeigerbereich (Screen_2893) */
.cc-gauge-label { font-size: 10px; color: #787b86; font-weight: bold; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 2px; }

/* ===== Platzhalter (Wallet / Live / Profil bis Phase 2/4/5) ===== */
.cc-placeholder {
    max-width: 560px;
    margin: 60px auto;
    text-align: center;
    background: #161922;
    border: 1px dashed #363c4e;
    border-radius: 12px;
    padding: 40px 32px;
}
.cc-placeholder > i { font-size: 40px; color: #2962ff; margin-bottom: 16px; }
.cc-ph-title { font-size: 18px; font-weight: bold; color: #d1d4dc; margin-bottom: 10px; }
.cc-ph-text { font-size: 12px; color: #787b86; line-height: 1.6; }

/* ===== Wallet: Konto-Karten (Phase 2) ===== */
.cc-wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}
.cc-wcard {
    background: #161922;
    border: 1px solid #2a2e39;
    border-radius: 10px;
    padding: 18px;
}
.cc-wcard-main { border-color: rgba(240,185,11,0.35); }
.cc-wcard-head { font-size: 12px; font-weight: bold; color: #b2b5be; letter-spacing: 0.4px; display: flex; align-items: center; gap: 8px; }
.cc-wcard-balance { font-size: 26px; font-weight: bold; color: #d1d4dc; margin: 12px 0 4px 0; font-variant-numeric: tabular-nums; }
.cc-wcard-sub { font-size: 11px; color: #787b86; margin-bottom: 14px; }
.cc-wcard-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===== Buttons ===== */
.cc-btn {
    background: #2a2e39; color: #d1d4dc;
    border: 1px solid #363c4e; border-radius: 6px;
    padding: 7px 14px; font-size: 12px; font-weight: bold;
    cursor: pointer; transition: background 0.15s, color 0.15s;
    display: inline-flex; align-items: center; gap: 6px;
}
.cc-btn:hover { background: #363c4e; color: #fff; }
.cc-btn-primary { background: #2962ff; border-color: #2962ff; color: #fff; }
.cc-btn-primary:hover { background: #1e4fd6; }
.cc-btn-gold { background: rgba(240,185,11,0.15); border-color: #f0b90b; color: #f0b90b; }
.cc-btn-gold:hover { background: rgba(240,185,11,0.3); color: #ffd75e; }
.cc-btn-ghost { background: transparent; }

/* ===== Modals (Transfer / Aufbuchen) ===== */
.cc-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 120001; /* über dem Command-Center-Overlay (120000) */
    background: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}
.cc-modal.cc-modal-open { display: flex; }
.cc-modal-box {
    background: #1e222d;
    border: 1px solid #363c4e;
    border-radius: 12px;
    width: 380px; max-width: 92vw;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    animation: ccFadeIn 0.2s ease;
}
.cc-modal-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px;
    background: #2a2e39;
    border-radius: 12px 12px 0 0;
    font-size: 14px; font-weight: bold; color: #d1d4dc;
}
.cc-modal-head span i { margin-right: 8px; }
.cc-modal-body { padding: 16px 18px; }
.cc-modal-foot {
    display: flex; justify-content: flex-end; gap: 8px;
    padding: 12px 18px;
    border-top: 1px solid #2a2e39;
}
.cc-form-row { margin-bottom: 12px; }
.cc-form-row label { display: block; font-size: 11px; color: #787b86; font-weight: bold; margin-bottom: 6px; }
.cc-form-row select, .cc-form-row input {
    width: 100%; box-sizing: border-box;
    background: #131722; color: #d1d4dc;
    border: 1px solid #363c4e; border-radius: 6px;
    padding: 9px 10px; font-size: 13px;
}
.cc-form-row select:focus, .cc-form-row input:focus { outline: none; border-color: #2962ff; box-shadow: 0 0 0 2px rgba(41,98,255,0.2); }
.cc-input-max { display: flex; gap: 8px; }
.cc-input-max input { flex: 1; }
.cc-quick-row { display: flex; gap: 8px; margin-bottom: 12px; }
.cc-quick-row .cc-btn { flex: 1; justify-content: center; }
.cc-modal-msg { font-size: 11px; min-height: 16px; margin-top: 4px; }

/* ===== Admin: Kill-Switch-Panel (Phase 3) ===== */
/* V10.0 (Roccos Fund 27.07.): Der Kasten war IMMER rot — die Farbe trug damit keine
   Information, und auf den zwei Tabs bedeutete Grün sogar das GEGENTEIL voneinander
   (Admin „grün = LIVE frei", Profil „grün = gesperrt"). Jetzt gilt überall dieselbe Regel:
   grün = Live-Trading möglich, rot = blockiert, grau = unbestimmt (keine Keys hinterlegt).
   Basis bleibt rot — ohne Zustandsklasse ist der sichere Zustand angenommen. */
.cc-kill-panel.cc-on {
    background: rgba(8, 153, 129, 0.08);
    border-color: #089981;
}
.cc-kill-panel.cc-neutral {
    background: rgba(120, 123, 134, 0.07);
    border-color: #4a4f5e;
}

/* V11.0: Auch der SCHALTER folgt dem Zustand, nicht der Checkbox-Stellung. Der globale Style
   in chart_I.css faerbt stur nach :checked (aus = grau, an = rot) — das passt fuer den Not-Aus
   (an = blockiert), ist bei der Freigabe aber genau verkehrt (an = frei). Die Klassen setzt
   ccSetLiveBox() zusammen mit der Kasten-Farbe, damit Schalter und Rahmen nie widersprechen.
   Nur innerhalb .cc-kill-panel — alle anderen Schalter im Projekt bleiben unberuehrt.
   Ohne Klasse (keine Keys hinterlegt) bleibt es beim grauen Default. */
.cc-kill-panel .switch.cc-sw-on .slider,
.cc-kill-panel .switch.cc-sw-on input:checked + .slider { background-color: #089981; }
.cc-kill-panel .switch.cc-sw-off .slider,
.cc-kill-panel .switch.cc-sw-off input:checked + .slider { background-color: #f23645; }
.cc-kill-panel {
    background: rgba(242, 54, 69, 0.08);
    border: 1px solid #f23645;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cc-kill-title { color: #f23645; font-weight: bold; font-size: 14px; letter-spacing: 0.4px; }
.cc-kill-title i { margin-right: 8px; }
.cc-kill-sub { font-size: 11px; color: #b2b5be; margin-top: 6px; max-width: 640px; line-height: 1.5; }
.cc-kill-state { font-size: 12px; font-weight: bold; white-space: nowrap; }

/* ===== Admin: Tacho-Zeile (Phase 3) ===== */
.cc-gauge-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}
.cc-gauge-box {
    background: #161922;
    border: 1px solid #2a2e39;
    border-radius: 10px;
    padding: 18px 18px 12px 18px;
    text-align: center;
}
.cc-gauge-box .cc-gauge { max-width: 220px; margin: 0 auto; }
.cc-gauge-detail { font-size: 11px; color: #787b86; margin-top: 6px; font-variant-numeric: tabular-nums; }

/* ===== Admin: Feed-Frische (Phase 3) ===== */
.cc-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.cc-feed-card {
    background: #1b1f29;
    border: 1px solid #2a2e39;
    border-radius: 8px;
    padding: 12px 14px;
}
.cc-feed-head { font-size: 11px; font-weight: bold; color: #787b86; letter-spacing: 0.4px; margin-bottom: 8px; border-bottom: 1px solid #2a2e39; padding-bottom: 6px; }
.cc-feed-row { display: flex; justify-content: space-between; font-size: 12px; color: #b2b5be; padding: 4px 0; }

/* ===== Profil: API-Key-Karte (Phase 4) ===== */
.cc-key-status {
    font-size: 12px;
    color: #787b86;
    background: #1b1f29;
    border: 1px solid #2a2e39;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 14px;
}
.cc-key-hints {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #2a2e39;
    font-size: 11px;
    color: #787b86;
    line-height: 1.7;
}
.cc-key-hints > div { display: flex; gap: 8px; align-items: baseline; }
.cc-key-hints i { color: #2962ff; width: 14px; flex-shrink: 0; text-align: center; }
.cc-key-hints b { color: #b2b5be; }

/* ===== Grundstellung / Danger-Zone (Aufräum-Runde) ===== */
.cc-danger-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: rgba(242, 54, 69, 0.06);
    border: 1px solid rgba(242, 54, 69, 0.4);
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 16px;
}
.cc-dz-text { flex: 1; min-width: 280px; }
.cc-dz-title { color: #f23645; font-weight: bold; font-size: 13px; letter-spacing: 0.3px; }
.cc-dz-title i { margin-right: 8px; }
.cc-dz-sub { font-size: 11px; color: #b2b5be; margin-top: 6px; line-height: 1.5; }
.cc-btn-danger { background: rgba(242,54,69,0.12); border-color: #f23645; color: #f23645; white-space: nowrap; }
.cc-btn-danger:hover { background: rgba(242,54,69,0.28); color: #ff5a68; }

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .cc-body { padding: 12px; }
    .cc-tiles { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 8px; }
    .cc-tile-value { font-size: 18px; }
    .cc-header-title { font-size: 13px; }
    .cc-user-badge { display: none; }
    .cc-donut { width: 120px; height: 120px; }
}

/* ===== V7.0 Phase 6: Live-Orders ===== */
.cc-live-banner { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 8px; font-size: 12px; margin-bottom: 12px; }
.cc-live-banner.red { background: rgba(242, 54, 69, 0.08); border: 1px solid rgba(242, 54, 69, 0.45); color: #f2a0a8; }
.cc-live-banner.red i { color: #f23645; }
.cc-live-banner.amber { background: rgba(240, 185, 11, 0.07); border: 1px solid rgba(240, 185, 11, 0.4); color: #e8d29a; }
.cc-live-banner.amber i { color: #f0b90b; }

.cc-lo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px 14px; }
.cc-lo-sides { display: flex; gap: 8px; }
.cc-lo-side { flex: 1; padding: 8px 0; border-radius: 6px; border: 1px solid #363c4e; background: #131722; color: #787b86; font-weight: bold; font-size: 12px; cursor: pointer; transition: all 0.15s; }
.cc-lo-side.long.active { background: rgba(8, 153, 129, 0.15); border-color: #089981; color: #089981; }
.cc-lo-side.short.active { background: rgba(242, 54, 69, 0.15); border-color: #f23645; color: #f23645; }

.cc-lo-overlay { position: fixed; inset: 0; background: rgba(11, 13, 18, 0.82); backdrop-filter: blur(3px); z-index: 120050; display: flex; align-items: center; justify-content: center; }
.cc-lo-box { width: 440px; max-width: 94vw; background: #161922; border: 1px solid #f23645; border-radius: 12px; padding: 18px 20px; box-shadow: 0 18px 60px rgba(0, 0, 0, 0.75); }
.cc-lo-box-head { color: #f23645; font-weight: bold; font-size: 14px; letter-spacing: 0.5px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.cc-lo-summary { background: #0f1115; border: 1px solid #2a2e39; border-radius: 8px; padding: 10px 12px; margin-bottom: 12px; }
.cc-lo-sumrow { display: flex; justify-content: space-between; padding: 3px 0; font-size: 12px; color: #787b86; }
.cc-lo-chk-row { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: #d1d4dc; cursor: pointer; line-height: 1.4; }
.cc-lo-chk-row input { margin-top: 2px; accent-color: #f23645; }

.cc-mini-btn { background: transparent; border: 1px solid #363c4e; color: #b2b5be; border-radius: 5px; padding: 3px 9px; font-size: 10px; font-weight: bold; cursor: pointer; transition: all 0.15s; }
.cc-mini-btn:hover { border-color: #f0b90b; color: #f0b90b; }
.cc-mini-btn.red { border-color: rgba(242, 54, 69, 0.5); color: #f23645; }
.cc-mini-btn.red:hover { background: rgba(242, 54, 69, 0.12); border-color: #f23645; }

/* ===== V8.0: OFFENE POSITIONEN (Live) — Liste/Kacheln-Umschalter + Positions-Kacheln ===== */
.cc-pos-view-toggle { display: inline-flex; margin-left: auto; margin-right: 10px; border: 1px solid #363c4e; border-radius: 6px; overflow: hidden; }
.cc-pos-view-toggle .seg { padding: 3px 10px; font-size: 11px; color: #787b86; cursor: pointer; transition: all 0.15s; }
.cc-pos-view-toggle .seg:hover { color: #d1d4dc; }
.cc-pos-view-toggle .seg.on { background: #2962ff; color: #fff; }

.cc-pos-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; padding: 4px 0; }
.cc-pos-tile { background: #131722; border: 1px solid #2a2e39; border-radius: 8px; padding: 12px 14px; }
.cc-tile-head { display: flex; align-items: center; gap: 8px; }
.cc-tile-sym { font-weight: bold; font-size: 14px; color: #d1d4dc; }
.cc-tile-lev { margin-left: auto; font-size: 11px; color: #787b86; }
.cc-tile-pnl { font-size: 20px; font-weight: bold; margin: 8px 0 6px; }
.cc-tile-pnlpct { font-size: 12px; font-weight: normal; }
.cc-tile-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px 14px; margin-bottom: 10px; }
.cc-tile-row { display: flex; flex-direction: column; font-size: 12px; }
.cc-tile-row span:first-child { color: #787b86; font-size: 10px; text-transform: uppercase; letter-spacing: 0.3px; }
.cc-tile-actions { display: flex; justify-content: flex-end; border-top: 1px solid #2a2e39; padding-top: 8px; }
@media (max-width: 640px) { .cc-pos-tiles { grid-template-columns: 1fr; } .cc-tile-grid { grid-template-columns: 1fr 1fr; } }

/* ===== V9.0: Admin-Umschalter System | Benutzer (Segmented) ===== */
.cc-seg {
    display: inline-flex; gap: 2px;
    background: #161922; border: 1px solid #2a2e39; border-radius: 8px;
    padding: 2px; margin-bottom: 16px;
}
.cc-seg-btn {
    padding: 7px 16px; border: none; background: transparent; color: #787b86;
    font-size: 12px; font-weight: 700; cursor: pointer; border-radius: 6px;
    transition: all 0.15s;
}
.cc-seg-btn:hover { color: #d1d4dc; }
.cc-seg-btn.active { background: #2962ff; color: #fff; }
.cc-seg-btn i { margin-right: 6px; }

/* ===== V9.0: Benutzer-Ansicht — aufklappbare User-Tabelle ===== */
.cc-au-row { cursor: pointer; }
.cc-au-row:hover td { background: rgba(41, 98, 255, 0.06); }
.cc-au-sub td { background: #131722; padding: 10px 12px; white-space: normal; }

/* ===== V9.0: Avatar (CC-Header + Profil-Card) ===== */
.cc-header-title img.cc-avatar {
    width: 28px; height: 28px; border-radius: 50%; object-fit: cover;
    vertical-align: middle; margin-right: 8px; border: 1px solid #363c4e;
}
.cc-avatar-row { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.cc-avatar-preview {
    width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
    background: #131722; border: 1px solid #363c4e;
    display: flex; align-items: center; justify-content: center;
}
.cc-avatar-preview i { color: #2962ff; font-size: 24px; }
.cc-avatar-preview img { width: 100%; height: 100%; object-fit: cover; }
