:root {
  --bg: #f6f7f9;
  --card: #ffffff;
  --card-soft: #f9fafb;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --primary: #2563eb;
  --primary-600: #1d4ed8;
  --success: #15803d;
  --warning: #d97706;
  --danger: #b91c1c;
  --neutral: #475569;
  --ring: rgba(37, 99, 235, 0.18);
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --shadow: 0 1px 2px rgba(17, 24, 39, 0.06), 0 6px 16px rgba(17, 24, 39, 0.04);
  --shadow-soft: 0 1px 1px rgba(17, 24, 39, 0.03), 0 2px 8px rgba(17, 24, 39, 0.04);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --sidebar-width: 272px;
  --sidebar-collapsed: 84px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-600);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-3) 0;
  font-weight: 650;
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.2rem;
}

h3 {
  font-size: 1rem;
}

p {
  margin: 0 0 var(--space-3) 0;
}

code,
pre,
kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
}

.app-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  background: var(--card);
  border-right: 1px solid var(--border);
  padding: var(--space-4);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.sidebar-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.sidebar-brand-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.sidebar-brand-sub {
  color: var(--muted);
  font-size: 12px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.nav-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.nav-group-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 var(--space-2);
  margin-bottom: var(--space-1);
}

.nav-group-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.nav-group-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid #d6deea;
  background: #f4f7fc;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.nav-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.nav-group-toggle:hover {
  color: var(--text);
}

.nav-group-caret {
  font-size: 11px;
  transition: transform 0.15s ease;
  color: #94a3b8;
}

.nav-group.is-open .nav-group-caret,
.nav-group-toggle[aria-expanded="true"] .nav-group-caret {
  transform: rotate(0deg);
}

.nav-group-toggle[aria-expanded="false"] .nav-group-caret {
  transform: rotate(-90deg);
}

.nav-group-links {
  display: grid;
  gap: var(--space-1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.18s ease, opacity 0.14s ease;
}

.nav-group-links.is-open {
  max-height: 620px;
  opacity: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 40px;
  border-radius: var(--radius-sm);
  padding: 9px var(--space-3);
  color: var(--text);
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nav-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #cbd5e1;
  flex-shrink: 0;
}

.nav-link:hover {
  background: #f3f4f6;
  border-color: var(--border);
  color: var(--text);
}

.nav-link.is-active {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--primary);
  font-weight: 600;
}

.nav-link.is-active::before {
  background: var(--primary);
}

.nav-link-badge {
  margin-left: auto;
}

.sidebar-footer {
  margin-top: var(--space-6);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  display: grid;
  gap: var(--space-2);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 120;
  min-height: 68px;
  background: rgba(246, 247, 249, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
}

.topbar-left,
.topbar-center,
.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.topbar-left {
  min-width: 0;
}

.topbar-center {
  margin-left: auto;
}

.topbar-right {
  margin-left: auto;
}

.topbar-bell {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #64748b;
  box-shadow: 0 1px 1px rgba(17, 24, 39, 0.04);
}

.topbar-bell:hover {
  border-color: #cfd8e6;
  background: #f8fafc;
  color: var(--text);
}

.topbar-bell.is-active {
  border-color: rgba(37, 99, 235, 0.26);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
}

.topbar-bell-icon {
  font-size: 16px;
  line-height: 1;
}

.topbar-bell-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  padding: 0 6px;
  border: 1px solid #f59e0b;
  background: #fff7ed;
  color: #c2410c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.breadcrumbs strong {
  color: var(--text);
}

.company-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--muted);
}

.company-chip strong {
  color: var(--text);
}

.topbar-company-subtitle {
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
}

.content-wrap {
  width: 100%;
  padding: var(--space-6);
}

.content {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-4);
}

.public-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.public-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--border);
  background: rgba(246, 247, 249, 0.9);
}

.public-content {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: clamp(20px, 6vw, 56px) var(--space-4);
}

.content-auth {
  max-width: 480px;
}

.auth-wrap {
  min-height: calc(100vh - 180px);
  display: grid;
  align-items: center;
}

.auth-logo {
  text-align: center;
  margin-bottom: var(--space-4);
}

.auth-logo img {
  width: min(220px, 70vw);
  height: auto;
  object-fit: contain;
}

.auth-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 26px);
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.card-title {
  margin: 0;
  font-size: 1rem;
}

.card-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.card-body {
  display: block;
}

.filters {
  display: grid;
  gap: var(--space-3);
}

.filters-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.field-group {
  display: grid;
  gap: 6px;
}

.chip-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: #374151;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.chip-toggle:hover {
  border-color: #cfd8e6;
  background: #f1f5f9;
}

.chip-toggle input {
  accent-color: var(--primary);
}

.form-grid {
  display: grid;
  gap: var(--space-3);
}

.form-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.page-title {
  margin: 0;
  font-size: 1.45rem;
}

.page-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.action-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.metric-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metric-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: var(--space-4);
}

.metric-label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.metric-value {
  margin: 6px 0 4px;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.metric-copy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.stack {
  display: grid;
  gap: var(--space-3);
}

.list-compact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.list-compact li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.list-compact li:last-child {
  border-bottom: none;
}

.list-main {
  min-width: 0;
}

.list-main strong {
  display: block;
}

.list-main small {
  color: var(--muted);
}

.list-side {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.kv {
  display: grid;
  gap: 6px 12px;
  grid-template-columns: minmax(110px, 170px) 1fr;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 40px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 1px 1px rgba(17, 24, 39, 0.04);
  transition: transform 0.04s ease, border-color 0.15s ease, background 0.15s ease;
}

.btn:hover {
  background: #f8fafc;
  border-color: #d1d5db;
  color: var(--text);
}

.btn:active {
  transform: translateY(1px);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: #fff;
}

.btn-ghost {
  background: transparent;
}

.btn-danger {
  border-color: rgba(185, 28, 28, 0.24);
  color: var(--danger);
  background: rgba(185, 28, 28, 0.04);
}

.btn-danger:hover {
  background: rgba(185, 28, 28, 0.08);
  color: var(--danger);
}

.btn-small,
.btn-sm {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 12px;
}

input,
select,
textarea,
.field,
input.btn,
select.btn,
textarea.btn {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  color: var(--text);
  padding: 10px 12px;
  min-height: 42px;
  box-shadow: 0 1px 1px rgba(17, 24, 39, 0.03);
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

input[type="date"],
input[type="time"] {
  color: var(--text);
  background: var(--card);
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0.82;
  cursor: pointer;
}

label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

textarea,
textarea.btn {
  min-height: 88px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus,
button:focus,
a:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px var(--ring);
}

input[type="checkbox"],
input[type="radio"] {
  min-height: 0;
  width: auto;
  padding: 0;
}

.ui-datepicker {
  border: 1px solid #cfd8e3 !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12) !important;
}

.ui-datepicker .ui-datepicker-header {
  border: 0 !important;
  border-bottom: 1px solid #e5e7eb !important;
  background: #f8fafc !important;
  color: #111827 !important;
  font-weight: 700 !important;
}

.ui-datepicker .ui-state-default {
  border: 0 !important;
  background: transparent !important;
  color: #374151 !important;
  text-align: center !important;
}

.ui-datepicker .ui-state-hover {
  border-radius: 6px !important;
  background: #eff6ff !important;
  color: #1d4ed8 !important;
}

.ui-datepicker .ui-state-active {
  border-radius: 6px !important;
  background: #2563eb !important;
  color: #ffffff !important;
}

.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  overflow: auto;
}

table,
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

thead th {
  position: sticky;
  top: 0;
  background: #f9fafb;
  color: #374151;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px;
  border-bottom: 1px solid var(--border);
  z-index: 2;
}

tbody td {
  padding: 11px 12px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

tbody tr:nth-child(even) {
  background: #fcfcfd;
}

tbody tr:hover {
  background: #f8fafc;
}

tbody tr:last-child td {
  border-bottom: none;
}

.table-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.row-menu {
  position: relative;
}

.row-menu-toggle {
  min-width: 36px;
  padding-inline: 8px;
  font-weight: 700;
}

.row-menu-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 6px;
  display: none;
  z-index: 18;
}

.row-menu.is-open .row-menu-panel {
  display: grid;
  gap: 4px;
}

.row-menu-form {
  margin: 0;
}

.row-menu-item {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  min-height: 34px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

.row-menu-item:hover {
  background: #f8fafc;
}

.row-menu-item-danger {
  color: var(--danger);
}

.row-menu-item-danger:hover {
  background: rgba(185, 28, 28, 0.06);
}

.table-count {
  color: var(--muted);
  font-size: 12px;
}

.badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--neutral);
  font-size: 12px;
  font-weight: 600;
}

.badge-success,
.badge-ok,
.pill-ok {
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.24);
  color: var(--success);
}

.badge-warning,
.badge-warn,
.pill-warn {
  background: rgba(217, 119, 6, 0.1);
  border-color: rgba(217, 119, 6, 0.26);
  color: var(--warning);
}

.badge-danger,
.badge-bad,
.pill-bad {
  background: rgba(185, 28, 28, 0.1);
  border-color: rgba(185, 28, 28, 0.22);
  color: var(--danger);
}

.badge-neutral {
  background: #eef2f7;
  border-color: #dbe3ee;
  color: #3f4b5f;
}

.alert,
.success,
.error {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text);
  padding: 10px 12px;
}

.alert-success,
.success {
  border-color: rgba(22, 163, 74, 0.22);
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
}

.alert-warning {
  border-color: rgba(217, 119, 6, 0.22);
  background: rgba(217, 119, 6, 0.09);
  color: #92400e;
}

.alert-error,
.error {
  border-color: rgba(185, 28, 28, 0.22);
  background: rgba(185, 28, 28, 0.08);
  color: #991b1b;
}

.tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-3);
}

.tab {
  display: inline-flex;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 10px 10px 0 0;
  border: 1px solid transparent;
  color: var(--muted);
  cursor: pointer;
}

.tab-active,
.tab.is-active {
  color: var(--primary);
  background: #eef2ff;
  border-color: #c7d2fe;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.36);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: var(--space-4);
}

.modal-backdrop.is-open {
  display: flex;
}

.modal {
  width: min(560px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: var(--space-4);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.pager {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-3);
}

.empty-state {
  border: 1px dashed #d1d5db;
  background: #fbfcff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.empty-state-title {
  margin-bottom: 6px;
  font-weight: 650;
}

.empty-state-copy {
  color: var(--muted);
  margin-bottom: var(--space-3);
}

.empty-state-icon {
  font-size: 24px;
  margin-bottom: var(--space-2);
}

.reports-page-head .page-head {
  margin-bottom: 2px;
}

.reports-filters-card {
  border-color: #dbe3ee;
  background: #fff;
}

.reports-filters-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.reports-filter-buttons .action-row {
  gap: 8px;
}

.reports-quick-filters {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.reports-table-wrap {
  border-color: #d9e2ee;
}

.vc-reports-table thead th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #eef3f9;
  color: #1f2937;
}

.vc-reports-table tbody tr:hover {
  background: #f5f9ff;
}

.vc-subtle {
  color: #64748b;
  font-size: 12px;
}

.reports-actions {
  justify-content: flex-end;
}

.vc-report-row.vc-row-expanded {
  background: #f8fbff;
}

.vc-report-row.vc-row-expanded td {
  border-bottom-color: transparent;
}

.vc-photos-row td {
  background: #fbfdff;
}

.vc-photos-cell {
  padding: 0;
}

.vc-photos-panel {
  border-top: 1px solid #e2e8f0;
  padding: 14px;
}

.vc-photos-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.vc-photos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vc-photos-col h4 {
  margin: 0 0 8px;
  color: #475569;
  font-size: 13px;
}

.vc-photos-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.vc-thumb-btn {
  width: 100%;
  padding: 0;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  cursor: zoom-in;
}

.vc-thumb-btn:hover {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.vc-thumb-btn img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  image-orientation: from-image;
  display: block;
}

.vc-noimg {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  border: 1px dashed #cbd5e1;
  background: #f1f5f9;
  color: #94a3b8;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-caption {
  margin-top: 4px;
  color: #64748b;
  font-size: 11px;
}

.vc-scores-block {
  margin-top: 12px;
}

.vc-scores-list {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-scores-list span {
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid #dce5f0;
  background: #fff;
  color: #334155;
  font-size: 12px;
}

.vc-compare-backdrop {
  position: fixed;
  inset: 0;
  padding: 20px;
  background: rgba(2, 6, 23, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10040;
}

.vc-compare-backdrop.is-open {
  display: flex;
}

.vc-compare-modal {
  width: min(1040px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.vc-compare-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vc-compare-title {
  margin: 0;
}

.vc-compare-subtitle {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
}

.vc-compare-tabs {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vc-compare-tab {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid #d1d9e6;
  background: #f8fafc;
  color: #334155;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.vc-compare-tab:hover {
  border-color: #bfdbfe;
  background: #eff6ff;
}

.vc-compare-tab.is-active {
  border-color: rgba(37, 99, 235, 0.32);
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.vc-compare-canvas-wrap {
  margin-top: 12px;
  border: 1px solid #dce5f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 12px;
}

.vc-compare-canvas {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-height: 60vh;
  aspect-ratio: 16 / 10;
  background: #fff;
}

.vc-compare-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-orientation: from-image;
  transform-origin: center center;
}

.vc-compare-before {
  position: absolute;
  inset: 0;
}

.vc-compare-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.vc-compare-after {
  position: absolute;
  inset: 0;
}

.vc-compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #2563eb;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.vc-compare-controls {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr auto 1fr;
  align-items: center;
}

.vc-compare-controls label {
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.vc-compare-controls input[type="range"] {
  min-height: 0;
}

.vc-compare-meta {
  margin-top: 8px;
  color: #64748b;
  font-size: 12px;
}

.loading-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.spinner {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #dbe3ef;
  border-top-color: var(--primary);
  animation: ui-spin 0.8s linear infinite;
}

@keyframes ui-spin {
  to { transform: rotate(360deg); }
}

.toast-root {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10020;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 24px));
}

.toast {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  box-shadow: var(--shadow);
  padding: 10px 12px;
  font-size: 13px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
}

.toast-success {
  border-color: rgba(22, 163, 74, 0.24);
}

.toast-warning {
  border-color: rgba(217, 119, 6, 0.24);
}

.toast-error {
  border-color: rgba(185, 28, 28, 0.24);
}

.toast-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.icon-btn {
  width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: #334155;
}

.status-pill.active {
  color: var(--success);
  border-color: rgba(22, 163, 74, 0.25);
  background: rgba(22, 163, 74, 0.08);
}

.status-pill.inactive,
.status-pill.suspended {
  color: var(--danger);
  border-color: rgba(185, 28, 28, 0.2);
  background: rgba(185, 28, 28, 0.06);
}

.status-pill.trial {
  color: var(--warning);
  border-color: rgba(217, 119, 6, 0.22);
  background: rgba(217, 119, 6, 0.08);
}

.auth-wrap .muted {
  font-size: 14px;
}

.auth-footer {
  margin-top: var(--space-4);
  font-size: 14px;
  text-align: center;
}

.muted,
.text-muted {
  color: var(--muted) !important;
}

.w-100 {
  width: 100%;
}

.flex {
  display: flex;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex: 1 1 0;
}

.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }

/* Overrides para páginas con estilos legacy oscuros */
.inc-filters input,
.inc-filters select,
.vr-filters input,
.vr-filters select,
.tr-top select,
.tr-top input,
.kv,
.log-box,
.img-wrap,
.vr-side-panel,
.vr-items-table {
  color: var(--text) !important;
}

.inc-filters input,
.inc-filters select,
.vr-filters input,
.vr-filters select,
.tr-top select,
.tr-top input,
.vr-note-input,
.log-box,
.img-wrap,
.vr-side-panel,
.vr-items-table,
.inc-help,
.tr-row,
.vr-row {
  background: var(--card) !important;
  border-color: var(--border) !important;
}

.inc-row:hover,
.vr-row:hover,
.tr-row:hover {
  background: #f8fafc !important;
}

.inc-row.active,
.vr-row.active,
.tr-row.active {
  background: #eef2ff !important;
}

.inc-status.NEW,
.st-QUEUED {
  color: var(--warning) !important;
}

.inc-status.REVIEWING,
.st-RUNNING {
  color: var(--primary) !important;
}

.inc-status.CONFIRMED,
.st-SUCCESS {
  color: var(--success) !important;
}

.inc-status.CLOSED,
.st-SKIPPED {
  color: var(--neutral) !important;
}

.st-FAILED {
  color: var(--danger) !important;
}

.vr-tabs a.active,
.vr-tab.active {
  background: #eef2ff !important;
  border-color: #c7d2fe !important;
  color: var(--primary) !important;
}

.vr-row .plate,
.inc-id {
  color: var(--primary) !important;
}

.inc-help {
  background: #f8fafc !important;
}

.vr-thumb {
  border: 1px solid var(--border) !important;
}

.vr-item-actions .confirm {
  border-color: rgba(22, 163, 74, 0.22) !important;
  background: rgba(22, 163, 74, 0.08) !important;
}

.vr-item-actions .false {
  border-color: rgba(185, 28, 28, 0.2) !important;
  background: rgba(185, 28, 28, 0.08) !important;
}

.vr-item-actions .confirm.pressed,
.vr-item-actions .false.pressed {
  outline: 2px solid rgba(37, 99, 235, 0.28);
}

.is-toast-hidden {
  display: none !important;
}

/* VANi */
.vani-answer-box {
  background: #f8fafc;
  border-color: var(--border);
  color: var(--text);
}

.vani-chat-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.vani-chat-msg {
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.vani-chat-msg.is-user {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.vani-chat-msg.is-assistant {
  background: #f8fafc;
}

.vani-chat-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.vani-chat-body {
  color: var(--text);
}

.vani-action-card {
  background: #fff;
  border-color: var(--border);
}

.vani-action-pre {
  background: #f8fafc;
  border: 1px solid var(--border);
  color: var(--text);
}

/* Mini chat VANi en drawer lateral */
.vani-mini-chat {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9988;
}

.vani-mini-toggle {
  width: 62px;
  height: 62px;
  border: 1px solid #b8c7db;
  border-radius: 16px;
  background: linear-gradient(145deg, #f4f9ff, #deebfb);
  color: #1e3a8a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.vani-mini-toggle:hover {
  background: linear-gradient(145deg, #ebf3ff, #d5e6fb);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.2);
}

.vani-mini-toggle-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.vani-mini-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 9989;
}

.vani-mini-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(470px, calc(100vw - 18px));
  border-left: 1px solid #d7e2f0;
  background: #f7fbff;
  box-shadow: -16px 0 34px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(104%);
  transition: transform 0.2s ease;
  z-index: 9990;
}

.vani-mini-chat.vani-mini-expanded .vani-mini-panel {
  width: min(640px, calc(100vw - 18px));
}

.vani-mini-chat.vani-mini-open .vani-mini-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.vani-mini-chat.vani-mini-open .vani-mini-panel {
  transform: translateX(0);
}

.vani-mini-chat.vani-mini-open .vani-mini-toggle {
  opacity: 0;
  pointer-events: none;
}

.vani-mini-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid #deebf7;
  background: linear-gradient(180deg, #edf5ff 0%, #f5f9ff 100%);
}

.vani-mini-panel-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vani-mini-panel-title-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 8px;
}

.vani-mini-panel-title {
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.vani-mini-status {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: #0f766e;
}

.vani-mini-status.is-info {
  color: #1d4ed8;
}

.vani-mini-status.is-warn {
  color: #b45309;
}

.vani-mini-status.is-error {
  color: #b91c1c;
}

.vani-mini-status.is-ok {
  color: #0f766e;
}

.vani-mini-panel-tools {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vani-mini-panel-full,
.vani-mini-close,
.vani-mini-tool {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1px solid #ccdbeb;
  background: #ffffff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  padding: 0 8px;
}

.vani-mini-panel-full:hover,
.vani-mini-close:hover,
.vani-mini-tool:hover {
  background: #e6f0ff;
  color: #1d4ed8;
  border-color: #bfd2ea;
}

.vani-mini-close {
  cursor: pointer;
  width: auto;
  min-width: 32px;
}

.vani-mini-tool {
  width: auto;
  min-width: 32px;
  cursor: pointer;
}

.vani-mini-panel-full {
  width: auto;
  min-width: 48px;
  padding: 0 10px;
}

.vani-mini-context {
  margin: 0;
  color: #42546d;
  font-size: 12px;
  font-weight: 600;
}

.vani-mini-context-wrap {
  margin: 0;
  padding: 10px 14px;
  border-bottom: 1px solid #e4edf8;
  background: #f9fcff;
}

.vani-mini-messages {
  flex: 1;
  overflow: auto;
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: linear-gradient(180deg, #f9fcff 0%, #f5f9ff 100%);
}

.vani-mini-msg {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d8e5f2;
  padding: 10px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.vani-mini-msg.is-user {
  margin-left: 42px;
  border-color: #cadcff;
  background: #eef4ff;
}

.vani-mini-msg.is-assistant {
  margin-right: 22px;
}

.vani-mini-msg.is-info {
  border-color: #bfdbfe;
  background: #f1f7ff;
}

.vani-mini-msg.is-warning {
  border-color: #fed7aa;
  background: #fff7ed;
}

.vani-mini-msg.is-success {
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.vani-mini-msg-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.vani-mini-msg-who {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.vani-mini-msg-time {
  color: #64748b;
  font-size: 11px;
}

.vani-mini-msg-user-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2563eb;
  display: inline-block;
}

.vani-mini-msg-avatar {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 6px;
}

.vani-mini-msg-body {
  color: #1f2937;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.vani-mini-summary {
  display: grid;
  gap: 4px;
}

.vani-mini-summary-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #1d4ed8;
}

.vani-mini-summary-copy {
  color: #0f172a;
}

.vani-mini-summary-stats {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.vani-mini-summary-stat {
  border-radius: 10px;
  border: 1px solid #dbe7f6;
  background: #fff;
  padding: 7px 8px;
  display: grid;
  gap: 2px;
}

.vani-mini-summary-stat .k {
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
}

.vani-mini-summary-stat .v {
  color: #0f172a;
  font-size: 14px;
  line-height: 1.2;
}

.vani-mini-summary-stat.is-info {
  border-color: #cfe0f6;
}

.vani-mini-summary-stat.is-warning {
  border-color: #f9d7a8;
  background: #fffaf2;
}

.vani-mini-summary-stat.is-critical {
  border-color: #f8c7c7;
  background: #fff7f7;
}

.vani-mini-summary-stat.is-success {
  border-color: #bfe8d0;
  background: #f7fff9;
}

.vani-mini-priority-list {
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.vani-mini-priority-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 7px;
}

.vani-mini-priority-severity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  border: 1px solid #d2e2f5;
  font-size: 10px;
  font-weight: 700;
  color: #1d4ed8;
  background: #eff6ff;
}

.vani-mini-priority-severity.is-warning {
  border-color: #fbd19a;
  color: #92400e;
  background: #fff7ed;
}

.vani-mini-priority-severity.is-critical {
  border-color: #fecaca;
  color: #991b1b;
  background: #fef2f2;
}

.vani-mini-priority-severity.is-success {
  border-color: #bbf7d0;
  color: #166534;
  background: #f0fdf4;
}

.vani-mini-priority-text {
  color: #1f2937;
  font-size: 12px;
}

.vani-mini-priority-action {
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid #c6d7ee;
  background: #fff;
  color: #1e40af;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.vani-mini-priority-action:hover {
  background: #eff6ff;
  border-color: #93c5fd;
}

.vani-mini-metric-chip-row {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vani-mini-metric-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #cfe0f4;
  background: #ffffff;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
}

.vani-mini-msg-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vani-mini-action {
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #c6d7ee;
  background: #ffffff;
  color: #1f2937;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.vani-mini-action-primary {
  border-color: #2563eb;
  background: #2563eb;
  color: #ffffff;
}

.vani-mini-action-secondary {
  border-color: #c6d7ee;
  background: #ffffff;
  color: #334155;
}

.vani-mini-msg-note {
  margin-top: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 12px;
}

.vani-mini-msg-note.is-warning {
  border-color: #fdba74;
  background: #ffedd5;
  color: #9a3412;
}

.vani-mini-prompts {
  padding: 10px 12px;
  border-top: 1px solid #dfebf8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #eef4ff;
}

.vani-mini-prompt {
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid #c3d5ec;
  background: #fff;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.vani-mini-prompt:hover {
  background: #dbeafe;
  color: #1d4ed8;
}

.vani-mini-prompt-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  color: #334155;
  font-size: 10px;
  font-weight: 700;
}

.vani-mini-input-wrap {
  border-top: 1px solid #dbe7f5;
  background: #f5f9ff;
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.vani-mini-input {
  flex: 1;
  min-height: 46px;
  max-height: 120px;
  resize: vertical;
  border: 1px solid #bdd0e8;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  padding: 10px 12px;
  font-size: 14px;
}

.vani-mini-input::placeholder {
  color: #64748b;
}

.vani-mini-send {
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #1d4ed8;
  background: #1d4ed8;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.vani-mini-send:hover {
  background: #1e40af;
}

.vani-mini-send:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.vani-mini-action:focus-visible,
.vani-mini-prompt:focus-visible,
.vani-mini-priority-action:focus-visible,
.vani-mini-send:focus-visible,
.vani-mini-input:focus-visible,
.vani-mini-close:focus-visible,
.vani-mini-tool:focus-visible,
.vani-mini-panel-full:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  .content-wrap {
    padding: var(--space-4);
  }

  .topbar {
    padding: var(--space-3) var(--space-4);
  }
}

@media (min-width: 981px) {
  body.is-sidebar-collapsed .app-shell {
    grid-template-columns: 1fr;
  }

  body.is-sidebar-collapsed .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--sidebar-width);
    transform: translateX(-105%);
    transition: transform 0.18s ease;
    z-index: 260;
    box-shadow: var(--shadow);
  }

  body.is-sidebar-collapsed.sidebar-open .sidebar {
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(280px, calc(100vw - 48px));
    transform: translateX(-105%);
    transition: transform 0.18s ease;
    z-index: 200;
    box-shadow: var(--shadow);
  }

  body.sidebar-open .sidebar {
    transform: translateX(0);
  }

  .topbar {
    min-height: 60px;
  }

  .topbar-center {
    display: none;
  }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .vc-photos-grid {
    grid-template-columns: 1fr;
  }

  .vc-compare-controls {
    grid-template-columns: 1fr;
  }

  .vani-mini-chat {
    right: 12px;
    bottom: 12px;
  }

  .vani-mini-panel {
    width: min(420px, 100vw);
  }

  .table-wrap table {
    min-width: 620px;
  }
}

@media (max-width: 640px) {
  .content-wrap {
    padding: var(--space-3);
  }

  .public-topbar {
    padding: var(--space-3);
  }

  .public-content {
    padding: var(--space-3);
  }

  .card {
    padding: var(--space-3);
  }

  .reports-actions {
    justify-content: flex-start;
  }

  .vc-compare-backdrop {
    padding: 8px;
  }

  .vc-compare-modal {
    max-height: calc(100vh - 16px);
    padding: 12px;
  }

  .vc-compare-canvas-wrap {
    padding: 8px;
  }

  .vani-mini-toggle {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .vani-mini-panel {
    width: 100vw;
  }

  .toast-root {
    left: 12px;
    right: 12px;
    width: auto;
  }
}
