/* ============================================================
   AutoBid Analyzer — Light theme
   ============================================================ */

:root {
  --sidebar-w:   240px;
  --topbar-h:    72px;
  --bg-page:     #f0f2f7;
  --bg-card:     #ffffff;
  --bg-sidebar:  #ffffff;
  --text-main:   #1a1d2e;
  --text-sub:    #4a4e6b;
  --text-muted:  #9298b0;
  --border:      #e8eaf2;
  --shadow-sm:   0 1px 6px rgba(0,0,0,.06);
  --shadow:      0 4px 24px rgba(0,0,0,.09);
  --radius-sm:   10px;
  --radius:      16px;
  --accent:      #4361ee;

  --grad-total:      linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --grad-buy:        linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --grad-borderline: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
  --grad-skip:       linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
}

/* ── Layout shell ─────────────────────────────────────────── */
.app-sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 200;
  transition: transform .25s ease;
  overflow-y: auto;
}

.app-main {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Topbar ─────────────────────────────────────────────────── */
.app-topbar {
  position: sticky;
  top: 0;
  height: var(--topbar-h);
  background: var(--bg-page);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.75rem;
  z-index: 100;
}

.topbar-greeting h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-main);
}
.topbar-greeting p {
  font-size: .78rem;
  color: var(--text-muted);
  margin: 0;
}

.topbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .85rem;
}

.topbar-search {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: .4rem 1rem;
  gap: .5rem;
  width: 220px;
}
.topbar-search i { color: var(--text-muted); font-size: .85rem; }
.topbar-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: .875rem;
  color: var(--text-main);
  width: 100%;
}
.topbar-search input::placeholder { color: var(--text-muted); }

.topbar-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #764ba2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  flex-shrink: 0;
}

.topbar-btn {
  background: none;
  border: none;
  color: var(--text-sub);
  cursor: pointer;
  padding: .4rem;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background .15s;
}
.topbar-btn:hover { background: var(--border); }

.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--text-main);
  padding: .25rem .35rem;
  border-radius: 8px;
  transition: background .15s;
  align-items: center;
}
.sidebar-toggle:hover { background: var(--border); }

/* ── Sidebar brand ─────────────────────────────────────────── */
.sidebar-brand {
  padding: 1.4rem 1.25rem 1.2rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.sidebar-brand-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #764ba2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ── Sidebar nav ───────────────────────────────────────────── */
.sidebar-nav {
  flex: 1;
  padding: .75rem .75rem;
}
.sidebar-nav-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-muted);
  padding: .6rem .5rem .25rem;
}
.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .62rem .75rem;
  border-radius: var(--radius-sm);
  color: var(--text-sub);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s, color .15s;
  margin-bottom: 2px;
}
.sidebar-nav .nav-link i { font-size: 1rem; flex-shrink: 0; }
.sidebar-nav .nav-link:hover { background: #f0f2f7; color: var(--text-main); }
.sidebar-nav .nav-link.active {
  background: #eef0fd;
  color: var(--accent);
  font-weight: 600;
}

/* ── Sidebar user ──────────────────────────────────────────── */
.sidebar-user {
  padding: .85rem 1.1rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.sidebar-user-info {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .65rem;
}
.sidebar-user-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #764ba2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.sidebar-user-name {
  font-weight: 600;
  font-size: .85rem;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-user-role { font-size: .72rem; color: var(--text-muted); }

/* ── App content ───────────────────────────────────────────── */
.app-content {
  flex: 1;
  padding: 0 1.75rem 2.5rem;
}

/* ── Mobile overlay ────────────────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 199;
}
.sidebar-overlay.show { display: block; }

/* ── Gradient KPI cards ────────────────────────────────────── */
.kpi-card {
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.kpi-card::before {
  content: '';
  position: absolute;
  top: -18px; right: -18px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
.kpi-card::after {
  content: '';
  position: absolute;
  bottom: -28px; right: 18px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}
.kpi-card-icon { font-size: 1.3rem; opacity: .9; }
.kpi-card-value {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin: .4rem 0 .2rem;
}
.kpi-card-label { font-size: .83rem; opacity: .88; font-weight: 500; }

.kpi-total      { background: var(--grad-total); }
.kpi-buy        { background: var(--grad-buy); }
.kpi-borderline { background: var(--grad-borderline); }
.kpi-skip       { background: var(--grad-skip); }

/* ── White card ────────────────────────────────────────────── */
.w-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.w-card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.w-card-header-title { font-weight: 700; font-size: .92rem; color: var(--text-main); }
.w-card-header-sub   { font-size: .78rem; color: var(--text-muted); }

/* ── Light table ───────────────────────────────────────────── */
.table-light-custom {
  width: 100%;
  border-collapse: collapse;
  font-size: .86rem;
}
.table-light-custom th {
  background: #f7f8fc;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .6rem .65rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
}
.table-light-custom td {
  padding: .6rem .65rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
  vertical-align: middle;
  overflow: hidden;
}
.table-light-custom tbody tr:last-child td { border-bottom: none; }
.table-light-custom tbody tr:hover { background: #f9fafc; }

/* ── Verdict badges ────────────────────────────────────────── */
.vbadge {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .28rem .7rem;
  border-radius: 20px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}
.vbadge-buy        { background: #e6f9f3; color: #0e9f6e; }
.vbadge-borderline { background: #fef3c7; color: #d97706; }
.vbadge-skip       { background: #fde8ec; color: #e02424; }
.vbadge-default    { background: #f0f2f7; color: var(--text-muted); }

/* ── Platform badge ────────────────────────────────────────── */
.pbadge {
  display: inline-block;
  padding: .22rem .55rem;
  border-radius: 6px;
  font-size: .74rem;
  font-weight: 600;
  background: #eef0fd;
  color: var(--accent);
}

/* ── Verdict banner (analysis_view) ───────────────────────── */
.verdict-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  border: 2px solid;
}
.verdict-buy        { background: #e6f9f3; border-color: #0e9f6e; color: #0e9f6e; }
.verdict-borderline { background: #fef3c7; border-color: #d97706; color: #d97706; }
.verdict-skip       { background: #fde8ec; border-color: #e02424; color: #e02424; }
.verdict-unknown    { background: #f0f2f7; border-color: var(--border); color: var(--text-muted); }
.verdict-icon       { font-size: 2.5rem; line-height: 1; }
.verdict-label      { font-size: 1.8rem; font-weight: 800; letter-spacing: 1px; }
.verdict-subtitle   { font-size: .9rem; opacity: .8; }

/* ── Mini stat ─────────────────────────────────────────────── */
.mini-stat {
  background: #f7f8fc;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem;
  text-align: center;
}
.mini-stat-value { font-size: 1.5rem; font-weight: 700; color: var(--text-main); }
.mini-stat-label { font-size: .75rem; color: var(--text-muted); }

/* ── Paste area ────────────────────────────────────────────── */
.paste-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  outline: none;
  background: #f9fafc;
}
.paste-area:hover, .paste-area.drag-over {
  border-color: var(--accent);
  background: #eef0fd;
  color: var(--accent);
}
.paste-area.has-image {
  border-color: #0e9f6e;
  background: #e6f9f3;
}

/* ── Cost row ──────────────────────────────────────────────── */
.cost-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
}

/* ── Nav tabs ──────────────────────────────────────────────── */
.nav-tabs-dark,
.nav-tabs-light {
  border-bottom: 1px solid var(--border);
}
.nav-tabs-dark .nav-link,
.nav-tabs-light .nav-link {
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 6px 6px 0 0;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
}
.nav-tabs-dark .nav-link:hover,
.nav-tabs-light .nav-link:hover { color: var(--text-main); }
.nav-tabs-dark .nav-link.active,
.nav-tabs-light .nav-link.active {
  color: var(--accent);
  background: var(--bg-card);
  border-color: var(--border) var(--border) var(--bg-card);
  font-weight: 600;
}

/* ── Bootstrap dark overrides (per pagine esistenti) ────────── */
.app-content .bg-dark,
.app-content .card.bg-dark {
  background: var(--bg-card) !important;
  color: var(--text-main) !important;
  border-color: var(--border) !important;
}
.app-content .card-header.bg-secondary.bg-opacity-25 {
  background: #f7f8fc !important;
  color: var(--text-main) !important;
  border-bottom: 1px solid var(--border) !important;
}
.app-content .border-secondary { border-color: var(--border) !important; }
.app-content .text-light  { color: var(--text-main) !important; }
.app-content .text-muted  { color: var(--text-muted) !important; }
.app-content .text-info   { color: var(--accent) !important; }
.app-content .table-dark {
  --bs-table-color:      var(--text-main);
  --bs-table-bg:         var(--bg-card);
  --bs-table-striped-bg: #f9fafc;
  --bs-table-hover-bg:   #f5f7fb;
  --bs-table-border-color: var(--border);
}
.app-content .table-dark th { color: var(--text-muted); background: #f7f8fc; }
.app-content .table-secondary { background: #f7f8fc !important; color: var(--text-muted) !important; }
.app-content .form-control.bg-dark,
.app-content .form-select.bg-dark {
  background: var(--bg-card) !important;
  color: var(--text-main) !important;
  border-color: var(--border) !important;
}
.app-content .input-group-text.bg-dark {
  background: #f7f8fc !important;
  border-color: var(--border) !important;
  color: var(--text-muted) !important;
}
.app-content .badge.bg-secondary { background: #eef0fd !important; color: var(--accent) !important; }
.app-content .badge-buy        { background: #e6f9f3 !important; color: #0e9f6e !important; }
.app-content .badge-borderline { background: #fef3c7 !important; color: #d97706 !important; }
.app-content .badge-skip       { background: #fde8ec !important; color: #e02424 !important; }

/* ── Login ─────────────────────────────────────────────────── */
.login-body {
  background: var(--bg-page);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.login-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}
.login-header {
  background: linear-gradient(135deg, var(--accent) 0%, #764ba2 100%);
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
}
.login-brand-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(255,255,255,.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: .75rem;
  backdrop-filter: blur(4px);
}
.login-body-inner { padding: 2rem; }
.login-field {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
  background: var(--bg-card) !important;
  color: var(--text-main) !important;
}
.login-field:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(67,97,238,.12) !important;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Desktop-only / Mobile-only helpers ──────────────────────── */
.mobile-only  { display: none !important; }
.desktop-only { display: block !important; }

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .app-sidebar { transform: translateX(-100%); box-shadow: none; }
  .app-sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 24px rgba(0,0,0,.12);
  }
  .app-main { margin-left: 0; }
  .sidebar-toggle { display: flex; }
  .topbar-search  { display: none; }
  .app-topbar     { padding: 0 1rem; }
  .app-content    { padding: 0 1rem 2rem; }
  .mobile-only    { display: block !important; }
  .desktop-only   { display: none !important; }
  /* Tab URL e Manuale: su mobile non sono visibili, forza screenshot */
  .nav-item.desktop-only,
  .tab-pane.desktop-only { display: none !important; }
}

@media (max-width: 575px) {
  .kpi-card-value { font-size: 2.1rem; }
  .kpi-card { min-height: 110px; }
  .verdict-banner { flex-direction: column; gap: .75rem; padding: 1.25rem; }
  .verdict-label  { font-size: 1.4rem; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-6px) scale(1.04); }
}
@keyframes badgePop {
  0%   { transform: scale(0.7); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Topbar entrance */
.app-topbar { animation: slideInDown .4s ease both; }
.topbar-greeting h2 { animation: fadeInUp .4s ease .05s both; }
.topbar-greeting p  { animation: fadeInUp .4s ease .1s both; }

/* Sidebar entrance */
.app-sidebar { animation: slideInLeft .35s ease both; }
.sidebar-nav .nav-link {
  animation: fadeInUp .35s ease both;
  transition: background .15s, color .15s, padding-left .18s ease;
}
.sidebar-nav .nav-link:nth-child(1) { animation-delay: .05s; }
.sidebar-nav .nav-link:nth-child(2) { animation-delay: .10s; }
.sidebar-nav .nav-link:nth-child(3) { animation-delay: .15s; }
.sidebar-nav .nav-link:hover  { padding-left: 1rem; }
.sidebar-nav .nav-link.active { padding-left: 1rem; }

/* KPI cards — staggered + hover lift */
.kpi-card {
  animation: fadeInUp .5s ease both;
  transition: transform .22s ease, box-shadow .22s ease;
  will-change: transform;
}
.kpi-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.kpi-card-value { animation: counterUp .5s ease both; }

/* Stagger per le 4 KPI */
.col-6:nth-child(1) .kpi-card,
.col-xl-3:nth-child(1) .kpi-card { animation-delay: .04s; }
.col-6:nth-child(2) .kpi-card,
.col-xl-3:nth-child(2) .kpi-card { animation-delay: .12s; }
.col-6:nth-child(3) .kpi-card,
.col-xl-3:nth-child(3) .kpi-card { animation-delay: .20s; }
.col-6:nth-child(4) .kpi-card,
.col-xl-3:nth-child(4) .kpi-card { animation-delay: .28s; }

/* Gradient animated for KPI cards on hover */
.kpi-total      { background-size: 200% 200%; }
.kpi-buy        { background-size: 200% 200%; }
.kpi-borderline { background-size: 200% 200%; }
.kpi-skip       { background-size: 200% 200%; }
.kpi-card:hover { animation: gradientShift 3s ease infinite, floatBubble 0s; }

/* White cards entrance */
.w-card {
  animation: scaleIn .45s ease both;
  transition: box-shadow .2s ease;
}
.w-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.1); }

/* Info/explain cards */
.info-card {
  animation: fadeInUp .45s ease .1s both;
}

/* Table rows */
.table-light-custom tbody tr {
  transition: background .12s ease;
}
.table-light-custom tbody tr td {
  animation: fadeInUp .3s ease both;
}

/* Badges */
.vbadge {
  animation: badgePop .35s ease both;
  transition: transform .15s, box-shadow .15s;
}
.vbadge:hover { transform: scale(1.08); box-shadow: 0 2px 8px rgba(0,0,0,.1); }

/* Buttons — lift on hover */
.btn {
  transition: transform .15s ease, box-shadow .15s ease, background .15s, opacity .15s;
  position: relative;
  overflow: hidden;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,.14); }
.btn:active { transform: translateY(0); box-shadow: none; }

/* Ripple effect on buttons */
.btn .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: ripple .55s linear;
  pointer-events: none;
  width: 80px; height: 80px;
  margin-top: -40px; margin-left: -40px;
}

/* Login card */
.login-card { animation: scaleIn .45s ease both; }

/* Alert/message banners */
.alert { animation: slideInDown .35s ease both; }

/* Verdict banner */
.verdict-banner { animation: scaleIn .4s ease both; }

/* Settings cards stagger */
.settings-section:nth-child(1) { animation: fadeInUp .4s ease .05s both; }
.settings-section:nth-child(2) { animation: fadeInUp .4s ease .12s both; }
.settings-section:nth-child(3) { animation: fadeInUp .4s ease .19s both; }
.settings-section:nth-child(4) { animation: fadeInUp .4s ease .26s both; }

/* Field help text */
.field-help {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .25rem;
  line-height: 1.4;
}
.field-help i { color: var(--accent); }

/* Info section card */
.info-box {
  background: linear-gradient(135deg, #eef0fd 0%, #f5f0fd 100%);
  border: 1px solid #d4d9f7;
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-box-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--accent);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.info-step {
  display: flex;
  gap: .75rem;
  margin-bottom: .65rem;
  font-size: .875rem;
  color: var(--text-sub);
  align-items: flex-start;
}
.info-step-num {
  min-width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.verdict-pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .2rem .6rem;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 700;
}
.verdict-pill-buy        { background: #e6f9f3; color: #0e9f6e; }
.verdict-pill-borderline { background: #fef3c7; color: #d97706; }
.verdict-pill-skip       { background: #fde8ec; color: #e02424; }

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .app-sidebar, .app-topbar, .btn, nav { display: none !important; }
  .app-main { margin-left: 0 !important; }
  .verdict-banner { print-color-adjust: exact; }
}

/* Disable animations on prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
