/* ============================================================
   Operium Outreach — app-stylesheet.
   Importeert de DS-tokens (web/design-system) en definieert de
   componentlaag: vertaling van de DS-React-componenten naar
   vanilla classes. Kleuren/afmetingen wijzig je in de tokens.
   ============================================================ */
@import url("tokens/fonts.css");
@import url("tokens/colors.css");
@import url("tokens/typography.css");
@import url("tokens/spacing.css");
@import url("tokens/effects.css");
@import url("tokens/base.css");

/* ---- App-shell -------------------------------------------------- */
.shell { display: flex; min-height: 100vh; }
.main-col { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.content { flex: 1; padding: var(--space-6) var(--space-8) var(--space-12); max-width: var(--content-max); width: 100%; }

/* ---- Sidebar v3 (licht, Bouwen/Draaien) --------------------------- */
.sidebar {
  width: var(--sidebar-w); flex: 0 0 var(--sidebar-w);
  background: var(--surface-card); color: var(--text-muted);
  border-right: var(--bw-hairline) solid var(--border-subtle);
  display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh;
  padding: var(--space-4) var(--space-3); box-sizing: border-box;
}
.sidebar-brand { display: flex; align-items: center; gap: 9px; padding: var(--space-1) var(--space-2) var(--space-2); }
.sidebar-brand img { width: 28px; height: 28px; object-fit: contain; }
.sidebar-brand .wordmark { font-size: var(--text-h4); font-weight: var(--fw-bold); color: var(--brand-navy); letter-spacing: 0.04em; margin-left: -3px; }
.nav { display: flex; flex-direction: column; gap: 2px; flex: 1; overflow-y: auto; min-height: 0; }
.nav.nav-bottom { flex: 0 0 auto; padding-top: var(--space-2); overflow: visible; }
.nav-section { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-subtle); padding: var(--space-4) var(--space-2) var(--space-1); font-weight: var(--fw-semibold); }
.nav-item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 8px 10px; border: 0; border-radius: var(--radius-md);
  font: inherit; font-size: var(--text-base); font-weight: var(--fw-medium);
  background: transparent; color: var(--text-muted); cursor: pointer; text-align: left;
  transition: background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}
.nav-item:hover { background: var(--surface-hover); color: var(--text-body); }
.nav-item.active { background: var(--accent-tint-faint); color: var(--accent-hover); font-weight: var(--fw-semibold); }
.nav-item.active .lucide { color: var(--accent); }
.nav-item .lucide { width: 17px; height: 17px; flex: 0 0 17px; }
.nav-item span:nth-child(2) { flex: 1; }
.nav-badge { display: none; font-size: var(--text-xs); font-weight: var(--fw-semibold); min-width: 20px; text-align: center; padding: 1px 6px; border-radius: var(--radius-pill); background: var(--surface-sunken); color: var(--text-muted); }
.nav-badge.on { display: inline-block; }
.nav-item.active .nav-badge { background: var(--accent); color: var(--on-accent); }
.sidebar-user { padding: var(--space-3) var(--space-2) 0; border-top: var(--bw-hairline) solid var(--border-subtle); margin-top: var(--space-3); display: flex; align-items: center; gap: var(--space-3); }
.sidebar-user .avatar { width: 30px; height: 30px; border-radius: var(--radius-pill); background: var(--brand-navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: var(--fw-semibold); font-size: var(--text-xs); flex: 0 0 30px; }
.sidebar-user .who { line-height: 1.3; flex: 1; min-width: 0; }
.sidebar-user .who .nm { color: var(--text-strong); font-weight: var(--fw-semibold); font-size: var(--text-sm); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-user .who .em { font-size: var(--text-overline); color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* R3 (F4 golf 1): dezelfde reden als .sidebar-user .avatar hierboven -- zonder
   flex-basis krimpt de Afmelden-knop zodra .who's tekst ruimte opeist. */
.sidebar-user .icon-btn { flex: 0 0 30px; }

/* ---- Topbar ------------------------------------------------------ */
.topbar { background: var(--surface-card); border-bottom: var(--bw-hairline) solid var(--border-default); padding: 0 var(--space-8); height: var(--topbar-h); display: flex; align-items: center; gap: var(--space-5); position: sticky; top: 0; z-index: 5; }
.topbar h1 { font-size: var(--text-h4); font-weight: var(--fw-semibold); }
.topbar .sub { font-size: var(--text-xs); color: var(--text-muted); }
.topbar-actions { display: flex; align-items: center; gap: var(--space-3); margin-left: auto; }

/* ---- Testmodus-banner -------------------------------------------- */
.test-banner { display: none; background: var(--amber-600); color: var(--white); padding: var(--space-2) var(--space-8); align-items: center; gap: var(--space-3); font-size: var(--text-sm); font-weight: var(--fw-medium); }
.test-banner.on { display: flex; }
.test-banner .lucide { width: 17px; height: 17px; flex: 0 0 17px; }

/* ---- Cards & stats (Card / StatCard) ------------------------------ */
.card { background: var(--surface-card); border: var(--bw-hairline) solid var(--border-subtle); border-radius: var(--radius-lg); }
.card-pad { padding: var(--space-4) var(--space-5); }
.card-header { padding: var(--space-3) var(--space-5); border-bottom: var(--bw-hairline) solid var(--border-subtle); display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); background: var(--surface-sunken); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.card-header h3 { font-size: var(--text-sm); font-weight: var(--fw-semibold); }
.stat { background: var(--surface-card); border: var(--bw-hairline) solid var(--border-subtle); border-radius: var(--radius-lg); padding: var(--space-4); }
.stat .label { font-size: var(--text-xs); color: var(--text-muted); font-weight: var(--fw-medium); }
.stat .value { font-size: var(--text-h2); font-weight: var(--fw-bold); letter-spacing: var(--tracking-tight); color: var(--text-strong); margin-top: var(--space-1); font-variant-numeric: tabular-nums; }
.stat .delta { font-size: var(--text-overline); color: var(--text-subtle); font-weight: var(--fw-medium); margin-top: 2px; }

/* ---- Buttons (Button: primary/secondary/ghost/danger, sm) --------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  height: var(--control-h-md); padding: 0 var(--space-4);
  border-radius: var(--radius-md); border: var(--bw-hairline) solid transparent;
  font: inherit; font-size: var(--text-sm); font-weight: var(--fw-semibold);
  cursor: pointer; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}
.btn:active { transform: translateY(0.5px); }
.btn:disabled { opacity: .55; cursor: default; }
.btn:focus-visible { box-shadow: var(--shadow-focus); }
/* Het "↩ terug naar Niet gebeld"-linkje (bellijst.js) is een kale <button>
   zonder .btn-klasse (eigen inline styling, geen DS-knop) -- valt dus buiten
   bovenstaande .btn:disabled. JS zet wél een echte disabled-attribuut op dit
   element (alleCockpitKnoppen) zolang een andere belpoging-actie loopt; zonder
   deze regel bleef het linkje er ondanks disabled volledig normaal uitzien. */
[data-terug-niet-gebeld]:disabled { opacity: .55; cursor: default; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover:not(:disabled) { background: var(--accent-hover); }
.btn-secondary { background: var(--surface-card); color: var(--text-body); border-color: var(--border-default); }
.btn-secondary:hover:not(:disabled) { background: var(--surface-hover); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover:not(:disabled) { background: var(--surface-hover); color: var(--text-body); }
.btn-danger { background: var(--status-danger-solid-strong); color: var(--white); }
.btn-danger:hover:not(:disabled) { background: var(--red-600); }
.btn-sm { height: var(--control-h-sm); padding: 0 var(--space-3); font-size: var(--text-xs); }
.btn .lucide { width: 15px; height: 15px; }
.btn-block { width: 100%; }

/* ---- StatusBadge — 6 families, tint-capsule, sm, pulse ------------ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 9px; border-radius: var(--radius-pill);
  font-size: var(--text-xs); font-weight: var(--fw-semibold); line-height: 1.6; white-space: nowrap;
}
.badge-sm { padding: 1px 7px; font-size: var(--text-overline); }
.badge .dot { width: 6px; height: 6px; border-radius: var(--radius-pill); background: currentColor; }
.badge.pulse .dot { animation: badge-pulse 2.2s var(--ease-in-out) infinite; }
@keyframes badge-pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
.badge-neutral { background: var(--status-neutral-bg); color: var(--status-neutral-fg); }
.badge-info    { background: var(--status-info-bg);    color: var(--status-info-fg); }
.badge-success { background: var(--status-success-bg); color: var(--status-success-fg); }
.badge-warning { background: var(--status-warning-bg); color: var(--status-warning-fg); }
.badge-danger  { background: var(--status-danger-bg);  color: var(--status-danger-fg); }
.badge-special { background: var(--status-special-bg); color: var(--status-special-fg); }

/* ---- Chips (filterrij) -------------------------------------------- */
.chip { height: var(--control-h-sm); padding: 0 var(--space-3); border-radius: var(--radius-md); font: inherit; font-size: var(--text-xs); font-weight: var(--fw-semibold); cursor: pointer; border: var(--bw-hairline) solid var(--border-default); background: var(--surface-card); color: var(--text-muted); transition: all var(--dur-fast) var(--ease-standard); }
.chip:hover { background: var(--surface-hover); }
.chip.on { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

/* ---- Inputs (Input/Select/Textarea) -------------------------------- */
.input, .select, .textarea {
  width: 100%; font: inherit; font-size: var(--text-sm); color: var(--text-body);
  background: var(--surface-card); border: var(--bw-hairline) solid var(--border-default);
  border-radius: var(--radius-md); padding: 0 var(--space-3); height: var(--control-h-md);
  transition: border-color var(--dur-fast) var(--ease-standard), box-shadow var(--dur-fast) var(--ease-standard);
}
.textarea { height: auto; min-height: 96px; padding: var(--space-2) var(--space-3); line-height: var(--lh-body); resize: vertical; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--focus-ring); box-shadow: var(--shadow-focus); }
.input::placeholder, .textarea::placeholder { color: var(--text-subtle); }
.field-label { display: block; font-size: var(--text-xs); font-weight: var(--fw-semibold); color: var(--text-body); margin-bottom: var(--space-1); }
.field-hint { font-size: var(--text-overline); color: var(--text-subtle); }
.search-wrap { position: relative; flex: 1; min-width: 230px; }
.search-wrap .lucide { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); width: 15px; height: 15px; color: var(--text-subtle); }
.search-wrap .input { padding-left: 34px; }

/* ---- Tabellen (dense, ~44px rijen, overline-header) ----------------- */
.table-head, .table-row { display: grid; gap: var(--space-2); padding: 0 var(--space-4); align-items: center; }
.table-head { color: var(--text-subtle); font-size: var(--text-overline); text-transform: uppercase; letter-spacing: var(--tracking-wide); font-weight: var(--fw-semibold); border-bottom: var(--bw-hairline) solid var(--border-subtle); height: 36px; }
.table-row { min-height: 44px; border-bottom: var(--bw-hairline) solid var(--border-subtle); font-size: var(--text-sm); padding-top: var(--space-1); padding-bottom: var(--space-1); }
.table-row.click { cursor: pointer; transition: background var(--dur-fast) var(--ease-standard); }
.table-row.click:hover { background: var(--blue-50); }
.table-row:last-child { border-bottom: 0; }
.cell-main { font-weight: var(--fw-semibold); color: var(--text-strong); }
.cell-muted { color: var(--text-muted); }
.mono { font-family: var(--font-mono); font-size: 0.88em; }

/* ---- Toast ----------------------------------------------------------- */
#toast-host { position: fixed; right: var(--space-5); bottom: var(--space-5); z-index: 200; display: flex; flex-direction: column; gap: var(--space-2); }
.toast { background: var(--ink-900); color: var(--white); padding: var(--space-2) var(--space-4); border-radius: var(--radius-md); font-size: var(--text-sm); font-weight: var(--fw-medium); box-shadow: var(--shadow-lg); animation: rise-in var(--dur-base) var(--ease-out); }
.toast.err { background: var(--status-danger-solid-strong); }
/* F4 R15 (kwaliteitsreview punt 2): een DERDE toast-register naast de
   standaard- en de err-toon. `isError=true` leest in deze app als "mislukt"
   (bijna elke bestaande aanroep is een mislukking, en .toast.err is de
   danger-kleur) -- een "let op, dit is wél gelukt maar met een kanttekening"
   -melding hoort daar niet in thuis. Zelfde token als de reviewpaneel-regel
   in chat.js (--status-warning-solid-strong, dezelfde AA-veilige "solid
   strong"-familie als .toast.err hierboven), zodat hetzelfde feit (een
   brein-terugval) zich niet in twee verschillende kleuren meldt afhankelijk
   van of hij bij /propose (het paneel) of bij /commit (de toast) opduikt. */
.toast.warn { background: var(--status-warning-solid-strong); }
.toast.out { opacity: 0; transition: opacity var(--dur-slow) var(--ease-standard); }
@keyframes rise-in { from { opacity: 0; transform: translateY(6px) } to { opacity: 1; transform: none } }

/* ---- Skeleton & empty state ------------------------------------------ */
.skeleton { border-radius: var(--radius-md); background: linear-gradient(90deg, var(--ink-100) 25%, var(--ink-50) 45%, var(--ink-100) 65%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; min-height: 14px; }
@keyframes shimmer { to { background-position: -200% 0 } }
.empty { padding: var(--space-10) var(--space-5); text-align: center; color: var(--text-muted); font-size: var(--text-sm); }
.empty .lucide { width: 26px; height: 26px; color: var(--ink-300); margin-bottom: var(--space-2); }

/* ---- Modals & drawer --------------------------------------------------- */
.scrim { position: fixed; inset: 0; background: rgba(22,23,27,.45); z-index: 40; display: flex; animation: rise-in var(--dur-fast) var(--ease-standard); }
.scrim.center { align-items: center; justify-content: center; padding: var(--space-6); }
.scrim.right { justify-content: flex-end; }
.drawer { width: 460px; max-width: 92vw; height: 100%; background: var(--surface-card); box-shadow: var(--shadow-xl); display: flex; flex-direction: column; overflow-y: auto; }
.drawer-head { padding: var(--space-4) var(--space-5); border-bottom: var(--bw-hairline) solid var(--border-subtle); display: flex; align-items: flex-start; gap: var(--space-3); position: sticky; top: 0; background: var(--surface-card); z-index: 2; }
.modal { width: 620px; max-width: 100%; background: var(--surface-card); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); overflow: hidden; }
.modal-head { padding: var(--space-4) var(--space-5); border-bottom: var(--bw-hairline) solid var(--border-subtle); display: flex; align-items: center; justify-content: space-between; }
.modal-foot { padding: var(--space-3) var(--space-5); border-top: var(--bw-hairline) solid var(--border-subtle); display: flex; justify-content: flex-end; gap: var(--space-2); background: var(--surface-sunken); }
.icon-btn { background: var(--surface-hover); border: 0; width: 30px; height: 30px; border-radius: var(--radius-md); cursor: pointer; color: var(--text-muted); display: inline-flex; align-items: center; justify-content: center; }
.icon-btn:hover { color: var(--text-body); }
.icon-btn .lucide { width: 16px; height: 16px; }

/* ---- Diversen ------------------------------------------------------------ */
.overline { font-size: var(--text-overline); text-transform: uppercase; letter-spacing: var(--tracking-overline); color: var(--text-subtle); font-weight: var(--fw-semibold); }
.row { display: flex; align-items: center; gap: var(--space-3); }
.grid { display: grid; gap: var(--space-4); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.progress { height: 7px; background: var(--ink-100); border-radius: var(--radius-xs); overflow: hidden; }
.progress > div { height: 100%; background: var(--accent); border-radius: var(--radius-xs); transition: width var(--dur-slow) var(--ease-standard); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--ink-300); border-radius: var(--radius-sm); border: 3px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-track { background: transparent; }
/* ---- Vandaag: KPI-band + actiekaarten ------------------------------ */
.kpi-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); background: var(--surface-card); border: var(--bw-hairline) solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; }
.kpi-cell { padding: var(--space-4) var(--space-5); border-left: var(--bw-hairline) solid var(--border-subtle); min-width: 0; }
.kpi-cell:first-child { border-left: 0; }
.kpi-cell .lbl { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: var(--text-xs); margin-bottom: var(--space-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kpi-cell .lbl .lucide { width: 14px; height: 14px; color: var(--text-subtle); flex: 0 0 14px; }
/* `.kpi-cell .lbl` is een flex-container -- `overflow`/`text-overflow` op de
   container zelf knipt een te lang label wel af, maar toont GEEN "..." voor
   een flex-ITEM-kind (klassieke flexbox-valkuil: het kind moet zelf
   min-width:0 + overflow:hidden + text-overflow:ellipsis krijgen om onder
   zijn intrinsieke tekstbreedte te mogen krimpen). Op 190px past elk van de
   acht huidige labels ruim; deze regel is het vangnet voor een label dat dat
   ooit niet meer doet (zie ook de title-tooltip in vandaag.js). */
.kpi-cell .lbl span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.kpi-cell .val { font-size: 21px; font-weight: var(--fw-semibold); color: var(--text-strong); font-family: var(--font-mono); line-height: 1; }
.actie-kolom { display: flex; flex-direction: column; min-width: 0; background: var(--surface-card); border: var(--bw-hairline) solid var(--border-subtle); border-radius: var(--radius-lg); overflow: hidden; }
.actie-kolom > .kop { display: flex; align-items: center; gap: var(--space-2); padding: 13px var(--space-4); border-bottom: var(--bw-hairline) solid var(--border-subtle); font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--text-strong); }
.actie-kolom > .kop .lucide { width: 16px; height: 16px; color: var(--text-muted); }
.actie-kolom > .kop .count { font-size: var(--text-xs); font-weight: var(--fw-semibold); font-family: var(--font-mono); color: var(--text-muted); background: var(--surface-sunken); border-radius: var(--radius-pill); padding: 1px 8px; }
.actie-kolom > .body { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-3); max-height: 520px; overflow-y: auto; }
.actie-kaart { border: var(--bw-hairline) solid var(--border-subtle); border-radius: var(--radius-md); padding: var(--space-3); background: var(--surface-card); }

/* ---- Schrijven: AI-uitvraag, tijdlijn, niveau-pill ------------------ */
.schrijf-msg { max-width: 86%; padding: 9px 13px; border-radius: 12px; font-size: var(--text-sm); line-height: 1.5; }
.schrijf-msg.ai { background: var(--surface-sunken); color: var(--text-body); border-top-left-radius: 4px; align-self: flex-start; }
.schrijf-msg.user { background: var(--accent); color: var(--white); border-top-right-radius: 4px; align-self: flex-end; }
.schrijf-brainline { display: flex; align-items: center; gap: 8px; padding: 9px 12px; background: var(--surface-sunken); border-radius: var(--radius-md); border: var(--bw-hairline) solid var(--border-subtle); font-size: var(--text-xs); color: var(--text-muted); }
.lvl-pill { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.lvl-pill .blok { width: 15px; height: 5px; border-radius: 2px; background: var(--border-default); }
.lvl-pill .blok.on { background: var(--accent); }
.lvl-pill .lbl { font-size: var(--text-xs); color: var(--text-muted); font-family: var(--font-mono); }
.tl-rij { display: flex; gap: 14px; }
.tl-as { display: flex; flex-direction: column; align-items: center; width: 28px; flex: 0 0 28px; }
.tl-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: var(--text-sm); font-weight: var(--fw-bold); }
.tl-lijn { width: 2px; flex: 1; background: var(--border-default); margin-top: 4px; }
.seq-chip { display: inline-flex; align-items: center; gap: 9px; padding: 8px 13px; cursor: pointer; white-space: nowrap; border-radius: var(--radius-md); border: var(--bw-hairline) solid var(--border-default); background: var(--surface-card); font: inherit; font-size: var(--text-sm); }
.seq-chip.on { border-color: var(--accent); background: var(--accent-tint-faint); color: var(--accent-hover); }
@keyframes schrijf-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.schrijf-pulse { animation: schrijf-pulse 1.1s var(--ease-standard) infinite; }

/* ---- Conversationele skill-agent: chat, stop, review ---------------- */
/* Token-aanwijzing (plan taak 7): --status-danger-tint bestaat niet in
   web/static/tokens/colors.css (alleen --status-danger-fg/-bg/-solid/
   -solid-strong) -- dichtstbijzijnde bestaande token gebruikt: --status-
   danger-bg (de tint-achtergrond van de danger-status-familie, zelfde rol
   als --accent-tint voor accent). --status-danger-solid, --surface-sunken,
   --accent, --ease-standard en --bw-hairline bestaan wél en zijn ongewijzigd
   overgenomen uit het plan.*/
.chat-log { display: flex; flex-direction: column; gap: 8px; max-height: 46vh; overflow-y: auto; padding: 4px 2px; }
.chat-msg { max-width: 86%; padding: 9px 13px; border-radius: 12px; font-size: var(--text-sm); line-height: 1.5; white-space: pre-wrap; }
.chat-msg.ai { background: var(--surface-sunken); color: var(--text-body); border-top-left-radius: 4px; align-self: flex-start; }
.chat-msg.user { background: var(--accent); color: var(--white); border-top-right-radius: 4px; align-self: flex-end; }
.chat-msg.err { background: var(--status-danger-bg); color: var(--status-danger-solid); align-self: stretch; max-width: 100%; }
.chat-row { display: flex; gap: 8px; align-items: flex-end; margin-top: 10px; }
.chat-row .input { flex: 1; }
.chat-busy { display: inline-flex; align-items: center; gap: 8px; font-size: var(--text-xs); color: var(--text-muted); }
@keyframes chat-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.chat-pulse { animation: chat-pulse 1.1s var(--ease-standard) infinite; }
.chat-review { margin-top: 12px; border-top: var(--bw-hairline) solid var(--border-subtle); padding-top: 12px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
