/* ============================================================
   PWEBBOT // UI COMPARTILHADA
   Mesmo design system do Fleet Control (dashboard.html): console
   de operações (NOC / glass cockpit), fundo escuro instrumental,
   tema claro opcional. Consumida por login/settings/backup/api-tokens.
   ============================================================ */

:root {
    /* Superfícies */
    --ink:        #06090f;
    --panel:      #0b1019;
    --panel-2:    #0f1622;
    --raised:     #15202f;
    --raised-2:   #1b2a3d;
    --line:       rgba(125,165,210,0.11);
    --line-2:     rgba(125,165,210,0.18);

    /* Texto */
    --text:       #e7eef6;
    --dim:        #93a4b8;
    --faint:      #5d6e82;

    /* Sinais de status (LEDs) */
    --online:     #2ee6a6;
    --warn:       #ffc04a;
    --error:      #ff5a6a;
    --idle:       #5f7383;
    --info:       #49c6ff;

    /* Glows */
    --glow-online: 0 0 0 1px rgba(46,230,166,.35), 0 0 12px rgba(46,230,166,.35);
    --glow-warn:   0 0 0 1px rgba(255,192,74,.35), 0 0 12px rgba(255,192,74,.30);
    --glow-error:  0 0 0 1px rgba(255,90,106,.35), 0 0 12px rgba(255,90,106,.30);

    /* Forma */
    --r-sm: 6px;
    --r:    10px;
    --r-lg: 16px;

    --shadow:   0 18px 50px -20px rgba(0,0,0,.8);
    --shadow-2: 0 30px 80px -30px rgba(0,0,0,.85);

    --mono: 'IBM Plex Mono', 'Consolas', 'SF Mono', ui-monospace, monospace;
    --display: 'Chakra Petch', 'Segoe UI', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-color: var(--raised) transparent; }

body {
    font-family: var(--mono);
    color: var(--text);
    background: var(--ink);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed; inset: 0; z-index: -2;
    background:
        radial-gradient(1100px 600px at 50% -10%, rgba(46,230,166,.10), transparent 60%),
        radial-gradient(900px 500px at 90% 0%, rgba(73,198,255,.07), transparent 55%),
        linear-gradient(180deg, #070b12 0%, var(--ink) 60%);
}
body::after {
    content: "";
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image:
        linear-gradient(rgba(125,165,210,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125,165,210,.035) 1px, transparent 1px);
    background-size: 48px 48px, 48px 48px;
    mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 85%);
}

::selection { background: rgba(46,230,166,.30); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--raised); border-radius: 20px; border: 2px solid transparent; background-clip: padding-box; }
::-webkit-scrollbar-thumb:hover { background: var(--raised-2); background-clip: padding-box; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    position: sticky; top: 0; z-index: 50;
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px;
    padding: 14px 26px;
    background: linear-gradient(180deg, rgba(11,16,25,.92), rgba(11,16,25,.72));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }

.eq { display: flex; align-items: flex-end; gap: 3px; height: 26px; width: 26px; }
.eq span {
    flex: 1; background: var(--online); border-radius: 2px;
    box-shadow: 0 0 8px rgba(46,230,166,.5);
    animation: eq 1.1s ease-in-out infinite;
}
.eq span:nth-child(1){ animation-delay: -.9s; }
.eq span:nth-child(2){ animation-delay: -.4s; }
.eq span:nth-child(3){ animation-delay: -.7s; }
.eq span:nth-child(4){ animation-delay: -.15s; }
@keyframes eq { 0%,100%{ height: 25%; opacity:.55 } 50%{ height: 100%; opacity:1 } }

.brand-text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.brand-text .name {
    font-family: var(--display); font-weight: 700; font-size: 17px;
    letter-spacing: .14em; color: var(--text);
}
.brand-text .name b { color: var(--online); font-weight: 700; }
.brand-text .sub {
    font-size: 10px; letter-spacing: .34em; color: var(--faint);
    text-transform: uppercase; margin-top: 4px;
}

.topnav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.topnav .user {
    font-size: 11px; color: var(--dim); padding-right: 10px; margin-right: 6px;
    border-right: 1px solid var(--line); white-space: nowrap;
}
.topnav a {
    color: var(--dim); text-decoration: none; font-size: 11px;
    letter-spacing: .04em; padding: 7px 10px; border-radius: var(--r-sm);
    transition: color .18s, background .18s; white-space: nowrap;
}
.topnav a:hover { color: var(--text); background: rgba(125,165,210,.08); }
.topnav a.active { color: var(--online); }
.topnav a.danger:hover { color: var(--error); background: rgba(255,90,106,.10); }

/* Toggle de tema */
.theme-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: var(--r-sm); margin-right: 8px;
    background: rgba(125,165,210,.06); border: 1px solid var(--line);
    color: var(--dim); cursor: pointer; transition: all .16s;
}
.theme-toggle:hover { color: var(--text); border-color: var(--line-2); transform: translateY(-1px); }
.theme-toggle svg { width: 16px; height: 16px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: 860px; margin: 0 auto; padding: 30px 26px 80px; }
.wrap.wide { max-width: 1100px; }

.back-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--dim); text-decoration: none; font-size: 12px;
    margin-bottom: 20px; transition: color .16s;
}
.back-link:hover { color: var(--text); }

.section-label {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--display); font-size: 11px; letter-spacing: .3em;
    text-transform: uppercase; color: var(--faint); margin-bottom: 14px;
}
.section-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ============================================================
   CARD
   ============================================================ */
.card {
    position: relative;
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
    border: 1px solid var(--line); border-radius: var(--r-lg);
    box-shadow: var(--shadow);
    padding: 24px 26px;
    margin-bottom: 20px;
    opacity: 0; transform: translateY(10px);
    animation: rise .5s cubic-bezier(.2,.7,.2,1) forwards;
}
.card h2 {
    font-family: var(--display); font-size: 14px; letter-spacing: .14em;
    text-transform: uppercase; color: var(--text); font-weight: 600;
    margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.card h3 {
    font-family: var(--display); font-size: 12px; letter-spacing: .1em;
    text-transform: uppercase; color: var(--dim); font-weight: 600; margin-bottom: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    font-family: var(--display); font-size: 12px; font-weight: 600;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 9px 16px; border-radius: var(--r-sm); border: 1px solid transparent;
    cursor: pointer; transition: all .16s; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 7px; color: var(--text);
    background: var(--raised);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--info); outline-offset: 2px; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.btn-primary { background: var(--online); color: #052016; box-shadow: 0 0 0 1px rgba(46,230,166,.4); }
.btn-primary:hover:not(:disabled) { box-shadow: var(--glow-online); }
.btn-ghost { background: rgba(125,165,210,.06); border-color: var(--line); color: var(--dim); }
.btn-ghost:hover:not(:disabled) { color: var(--text); border-color: var(--line-2); }
.btn-danger { background: rgba(255,90,106,.12); border-color: rgba(255,90,106,.4); color: var(--error); }
.btn-danger:hover:not(:disabled) { background: var(--error); color: #2a0509; }
.btn-warn { background: rgba(255,192,74,.12); border-color: rgba(255,192,74,.4); color: var(--warn); }
.btn-warn:hover:not(:disabled) { background: var(--warn); color: #271a02; }
.btn-info { background: rgba(73,198,255,.12); border-color: rgba(73,198,255,.4); color: var(--info); }
.btn-info:hover:not(:disabled) { background: var(--info); color: #02161f; }

.btn-sm { padding: 6px 11px; font-size: 10.5px; letter-spacing: .04em; }
.btn-block { width: 100%; justify-content: center; }
.btn-group { display: inline-flex; gap: 6px; flex-wrap: wrap; }

.form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px; }

/* Ações de linha: 1 botão primário + kebab */
.row-actions { display: flex; align-items: center; gap: 6px; justify-content: flex-end; flex: none; }
.btn.kebab {
    width: 30px; padding: 6px 0; justify-content: center;
    font-family: var(--mono); font-size: 17px; line-height: 1; letter-spacing: 0;
}
.btn.kebab.active { color: var(--text); border-color: var(--line-2); background: rgba(125,165,210,.10); }

.rowmenu {
    position: fixed; z-index: 200; min-width: 190px; padding: 6px;
    background: var(--panel-2); border: 1px solid var(--line-2);
    border-radius: var(--r); box-shadow: var(--shadow-2);
    animation: rise .14s ease forwards;
}
.rm-item {
    display: flex; align-items: center; width: 100%; text-align: left;
    background: none; border: none; color: var(--text);
    font-family: var(--mono); font-size: 12.5px;
    padding: 9px 11px; border-radius: var(--r-sm); cursor: pointer;
    transition: background .14s, color .14s;
}
.rm-item:hover { background: rgba(125,165,210,.10); }
.rm-item.danger { color: var(--error); }
.rm-item.danger:hover { background: rgba(255,90,106,.12); }
.rm-sep { height: 1px; background: var(--line); margin: 5px 4px; }

/* ============================================================
   FORMS
   ============================================================ */
.field { margin-bottom: 18px; }
.field > label {
    display: block; font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--dim); margin-bottom: 8px; font-family: var(--display); font-weight: 600;
}
.field input[type=text], .field input[type=url], .field input[type=tel],
.field input[type=email], .field input[type=number], .field input[type=password],
.field input[type=datetime-local], .field select, .field textarea {
    width: 100%; background: var(--ink); color: var(--text);
    border: 1px solid var(--line); border-radius: var(--r-sm);
    padding: 11px 13px; font-family: var(--mono); font-size: 13px;
    transition: border-color .16s, box-shadow .16s;
}
.field textarea { resize: vertical; min-height: 76px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--online); box-shadow: 0 0 0 3px rgba(46,230,166,.12);
}
.field input:disabled, .field select:disabled { opacity: .55; cursor: not-allowed; }
.field .hint { font-size: 11px; color: var(--faint); margin-top: 6px; line-height: 1.5; }
.field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--dim) 50%), linear-gradient(135deg, var(--dim) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px;
}

.field-row { display: flex; gap: 14px; }
.field-row .field { flex: 1; }

.check { display: flex; align-items: center; gap: 10px; cursor: pointer; margin-bottom: 16px; }
.check input { width: 16px; height: 16px; accent-color: var(--online); flex: none; }
.check span { font-size: 12.5px; color: var(--text); line-height: 1.5; }

.check-group { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.check-group .check { margin-bottom: 0; }

.info-box {
    background: rgba(73,198,255,.07); border: 1px solid rgba(73,198,255,.22);
    border-left: 3px solid var(--info); border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 13px 15px; margin-bottom: 20px; font-size: 12px; color: var(--dim); line-height: 1.6;
}
.info-box strong { color: var(--text); }
.info-box code { font-family: var(--mono); color: var(--text); background: rgba(125,165,210,.12); padding: 1px 5px; border-radius: 4px; }
.info-box.warn { background: rgba(255,192,74,.08); border-color: rgba(255,192,74,.25); border-left-color: var(--warn); color: var(--dim); }
.info-box.success {
    background: rgba(46,230,166,.07); border: 1px solid rgba(46,230,166,.28);
    border-left: 3px solid var(--online); border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 16px 18px; margin-bottom: 20px;
}
.info-box.success h3 { font-family: var(--display); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--online); margin-bottom: 10px; }
.info-box.success .warning { color: var(--warn); font-size: 11px; margin: 4px 0 10px; }

.reveal-value {
    font-family: var(--mono); font-size: 13px; color: var(--text);
    background: var(--ink); border: 1px solid var(--line); border-radius: var(--r-sm);
    padding: 12px 14px; word-break: break-all; margin-bottom: 10px; cursor: pointer;
}
.reveal-value:hover { border-color: var(--online); }

/* Toggle switch */
.switch { position: relative; display: inline-block; width: 46px; height: 24px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
    position: absolute; inset: 0; background: var(--raised); border: 1px solid var(--line);
    border-radius: 24px; transition: .25s; cursor: pointer;
}
.switch .slider::before {
    content: ""; position: absolute; height: 16px; width: 16px; left: 3px; top: 3px;
    background: var(--faint); border-radius: 50%; transition: .25s;
}
.switch input:checked + .slider { background: rgba(46,230,166,.18); border-color: var(--online); }
.switch input:checked + .slider::before { transform: translateX(22px); background: var(--online); box-shadow: 0 0 8px rgba(46,230,166,.6); }

/* ============================================================
   LIST ITEMS (backups, certificados, ...)
   ============================================================ */
.list-item {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-sm);
    margin-bottom: 10px; transition: border-color .15s;
}
.list-item:last-child { margin-bottom: 0; }
.list-item:hover { border-color: var(--line-2); }
.list-item .li-main { min-width: 0; }
.list-item .li-title { font-weight: 600; color: var(--text); font-size: 13.5px; word-break: break-word; }
.list-item .li-sub { font-size: 11.5px; color: var(--faint); margin-top: 4px; line-height: 1.5; }

/* ============================================================
   TABLE
   ============================================================ */
.grid-table { width: 100%; border-collapse: collapse; }
.grid-table thead th {
    text-align: left; font-family: var(--display); font-weight: 600;
    font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
    color: var(--faint); padding: 12px 14px;
    background: rgba(6,9,15,.5); border-bottom: 1px solid var(--line);
}
.grid-table tbody td { padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.grid-table tbody tr:last-child td { border-bottom: none; }
.grid-table tbody tr:hover { background: rgba(73,198,255,.04); }
.table-scroll { overflow-x: auto; }

/* ============================================================
   BADGES / PILL / LED
   ============================================================ */
.badge {
    display: inline-flex; align-items: center; font-family: var(--mono);
    font-size: 10px; letter-spacing: .04em; text-transform: uppercase;
    padding: 3px 9px; border-radius: 999px; font-weight: 600; border: 1px solid transparent;
    white-space: nowrap;
}
.badge-read  { background: rgba(46,230,166,.12); color: var(--online); border-color: rgba(46,230,166,.3); }
.badge-write { background: rgba(255,192,74,.12); color: var(--warn); border-color: rgba(255,192,74,.3); }
.badge-admin { background: rgba(255,90,106,.12); color: var(--error); border-color: rgba(255,90,106,.3); }
.badge-all   { background: rgba(73,198,255,.12); color: var(--info); border-color: rgba(73,198,255,.3); }

.pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: .04em; color: var(--text);
    background: rgba(125,165,210,.06); border: 1px solid var(--line);
    border-radius: 999px; padding: 5px 12px 5px 10px; white-space: nowrap;
}
.led { width: 8px; height: 8px; border-radius: 50%; flex: none; background: var(--idle); }
.led.online { background: var(--online); box-shadow: var(--glow-online); }
.led.warn   { background: var(--warn);   box-shadow: var(--glow-warn); }
.led.error  { background: var(--error);  box-shadow: var(--glow-error); }
.led.idle   { background: var(--idle); }

.token-chip {
    font-family: var(--mono); font-size: 12px; color: var(--dim);
    background: var(--ink); border: 1px solid var(--line); border-radius: var(--r-sm);
    padding: 5px 10px; cursor: pointer; user-select: none; transition: border-color .15s, color .15s;
}
.token-chip:hover { border-color: var(--online); color: var(--text); }

/* ============================================================
   OUTPUT BOX (logs de comando, respostas de CLI)
   ============================================================ */
.output-box {
    background: var(--ink); border: 1px solid var(--line); border-radius: var(--r);
    padding: 14px 16px; font-family: var(--mono); font-size: 12px; line-height: 1.65;
    white-space: pre-wrap; word-break: break-word; max-height: 320px; overflow: auto;
    color: var(--dim); margin-top: 14px;
}
/* Cores fixas (não seguem o tema): console sempre escuro, por legibilidade. */
.cli-box {
    background: #04070c; color: #2ee6a6; padding: 15px; border-radius: var(--r);
    font-family: var(--mono); font-size: 12.5px; line-height: 1.85; margin-top: 6px;
    border: 1px solid rgba(125,165,210,.18);
}
.cli-box .cmd { color: #e7eef6; }
.cli-box .comment { color: #5d6e82; }

.empty-state { text-align: center; padding: 40px 20px; color: var(--faint); font-size: 12px; }
.empty-state p { margin: 0; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-stack {
    position: fixed; bottom: 26px; right: 26px; z-index: 3000;
    display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.toast {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 18px; border-radius: var(--r); font-size: 13px;
    background: var(--panel-2); border: 1px solid var(--line-2); color: var(--text);
    box-shadow: var(--shadow-2); max-width: 360px;
    animation: toast-in .28s cubic-bezier(.2,.8,.2,1);
}
.toast .bar { width: 3px; align-self: stretch; border-radius: 3px; flex: none; }
.toast.success .bar { background: var(--online); box-shadow: var(--glow-online); }
.toast.error .bar { background: var(--error); box-shadow: var(--glow-error); }
.toast.info .bar { background: var(--info); box-shadow: 0 0 0 1px rgba(73,198,255,.35), 0 0 12px rgba(73,198,255,.30); }
.toast.leaving { animation: toast-out .22s ease forwards; }
@keyframes toast-in { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toast-out { to { transform: translateX(120%); opacity: 0; } }

/* ============================================================
   AUTH SHELL (login)
   ============================================================ */
.auth-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.auth-card {
    width: 100%; max-width: 380px;
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
    border: 1px solid var(--line-2); border-radius: var(--r-lg);
    box-shadow: var(--shadow-2); padding: 34px 32px;
    opacity: 0; transform: translateY(10px);
    animation: rise .5s cubic-bezier(.2,.7,.2,1) forwards;
}
.auth-brand { text-align: center; margin-bottom: 28px; }
.auth-brand .eq { margin: 0 auto 14px; }
.auth-brand .name { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: .16em; color: var(--text); }
.auth-brand .name b { color: var(--online); }
.auth-brand .sub { font-size: 10px; letter-spacing: .3em; color: var(--faint); text-transform: uppercase; margin-top: 6px; display: block; }
.auth-foot { text-align: center; margin-top: 22px; color: var(--faint); font-size: 10px; letter-spacing: .08em; }

/* ============================================================
   TRANSITIONS / UTIL
   ============================================================ */
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
[v-cloak] { display: none; }
.muted { color: var(--faint); font-size: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
    .topbar { flex-wrap: wrap; gap: 12px; }
    .wrap { padding: 22px 16px 60px; }
}
@media (max-width: 640px) {
    .field-row { flex-direction: column; gap: 0; }
    .list-item { flex-direction: column; align-items: stretch; }
    .row-actions { justify-content: flex-start; }
    .brand-text .sub { display: none; }
    .card { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .card, .auth-card { opacity: 1; transform: none; }
}

/* ============================================================
   TEMA CLARO (data-theme="light")
   ============================================================ */
[data-theme="light"] {
    --ink:      #eef1f7;
    --panel:    #ffffff;
    --panel-2:  #ffffff;
    --raised:   #eef2f8;
    --raised-2: #e1e7f0;
    --line:     rgba(22,40,68,0.10);
    --line-2:   rgba(22,40,68,0.17);
    --text:     #14202e;
    --dim:      #56657a;
    --faint:    #8593a5;
    --online:   #0fae7e;
    --warn:     #c97a00;
    --error:    #e23b46;
    --idle:     #9aa7b8;
    --info:     #1487d8;
    --glow-online: 0 0 0 1px rgba(15,174,126,.30), 0 0 8px rgba(15,174,126,.20);
    --glow-warn:   0 0 0 1px rgba(201,122,0,.30),  0 0 8px rgba(201,122,0,.16);
    --glow-error:  0 0 0 1px rgba(226,59,70,.30),  0 0 8px rgba(226,59,70,.16);
    --shadow:   0 14px 34px -18px rgba(22,40,68,.30);
    --shadow-2: 0 26px 60px -28px rgba(22,40,68,.34);
}
[data-theme="light"] body::before {
    background:
        radial-gradient(1100px 600px at 50% -10%, rgba(15,174,126,.12), transparent 60%),
        radial-gradient(900px 500px at 90% 0%, rgba(20,135,216,.08), transparent 55%),
        linear-gradient(180deg, #f8fafd 0%, var(--ink) 60%);
}
[data-theme="light"] body::after {
    background-image:
        linear-gradient(rgba(22,40,68,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,40,68,.05) 1px, transparent 1px);
}
[data-theme="light"] .topbar { background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)); }
[data-theme="light"] .grid-table thead th { background: #f3f6fb; }
[data-theme="light"] .grid-table tbody tr:hover { background: rgba(20,135,216,.05); }
[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea { background: #fbfcfe; }
[data-theme="light"] .btn-ghost { background: rgba(22,40,68,.04); }
[data-theme="light"] .theme-toggle { background: #fbfcfe; }
[data-theme="light"] .token-chip,
[data-theme="light"] .output-box { background: #fbfcfe; }
