:root {
  --bg: #f3f5f7;
  --panel: #ffffff;
  --panel-alt: #edf2f7;
  --ink: #13212d;
  --muted: #617485;
  --line: #d7e0e8;
  --brand: #0f766e;
  --brand-soft: #dff5f1;
  --accent: #1d4ed8;
  --danger: #c2410c;
  --success: #0f766e;
  --warning: #a16207;
  --sidebar: #10222d;
  --sidebar-ink: #e8eef2;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #eef3f6 0%, #f7f9fb 100%);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

.auth-body {
  min-height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 32%),
    radial-gradient(circle at right center, rgba(29, 78, 216, 0.14), transparent 30%),
    #f3f5f7;
}

.auth-shell {
  min-height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
}

.auth-panel {
  padding: 40px 48px;
}

.auth-panel-brand {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
}

.brand-visual {
  position: relative;
  height: 176px;
  max-height: 176px;
  margin: -6px 0 6px;
  background: transparent;
  border: 0;
  overflow: visible;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-visual-note {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: #274556;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.brand-visual-orbit {
  display: none;
}

.brand-visual-svg {
  display: block;
  width: min(100%, 860px);
  height: auto;
  max-height: none;
  flex: 0 0 auto;
}

.brand-lockup h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  margin: 12px 0 8px;
}

.brand-lockup p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.brand-chip,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand);
}

.auth-highlights {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: end;
}

.highlight-card,
.auth-card,
.panel,
.metric-card,
.module-card,
.list-card,
.analysis-card,
.hero-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(215, 224, 232, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-card {
  padding: 16px 18px;
}

.highlight-card h2,
.auth-card h2,
.panel h2,
.analysis-card h3 {
  margin: 0 0 8px;
}

.highlight-card p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.highlight-card p,
.muted {
  color: var(--muted);
}

.auth-panel-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: min(100%, 460px);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.auth-card.auth-card-pending {
  visibility: hidden;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-weight: 700;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fbfcfd;
  color: var(--ink);
}

.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.button-inline {
  white-space: nowrap;
  min-height: 48px;
}

.auth-inline-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.auth-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.auth-link-button:hover,
.auth-link-button:focus-visible {
  text-decoration: underline;
}

.auth-helper {
  margin: -6px 0 0;
  min-height: 1.4em;
  font-size: 0.9rem;
  line-height: 1.45;
}

.field input[type="file"] {
  padding: 12px 14px;
  background: linear-gradient(180deg, #fdfefe, #f5f9fc);
}

.field input[type="file"]::file-selector-button {
  appearance: none;
  border: 1px solid #c9d8e4;
  background: linear-gradient(135deg, #ffffff, #e7eef5);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  margin-right: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.field input[type="file"]::-webkit-file-upload-button {
  appearance: none;
  border: 1px solid #c9d8e4;
  background: linear-gradient(135deg, #ffffff, #e7eef5);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  margin-right: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field-checkbox {
  align-items: start;
}

.checkline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfd;
  color: var(--ink);
  font-weight: 600;
}

.checkline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand);
  flex: 0 0 auto;
}

.checkline span {
  font-size: 0.95rem;
  font-weight: 700;
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 120ms ease, opacity 120ms ease, background 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.button-primary {
  background: linear-gradient(135deg, #0f766e, #0b5f59);
  color: white;
}

.button-secondary {
  background: linear-gradient(180deg, #e7eef5, #d8e3ec);
  color: var(--ink);
  border-color: #d0dbe5;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: none;
}

.button-danger {
  background: linear-gradient(180deg, #fff1e8, #fde2d2);
  color: var(--danger);
  border-color: #f2c3a8;
}

.button-full {
  width: 100%;
}

.demo-box,
.local-note,
.empty-state,
.pill,
.status-box {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f8fafc;
}

.demo-box {
  padding: 16px;
  color: var(--muted);
}

.error-text {
  color: #b91c1c;
  min-height: 1.3em;
  margin: 0;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.sidebar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 30%),
    var(--sidebar);
  color: var(--sidebar-ink);
  padding: 24px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 24px;
}

.sidebar-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.sidebar-brand strong {
  display: block;
  font-size: 1rem;
}

.sidebar-brand p {
  margin: 2px 0 0;
  color: rgba(232, 238, 242, 0.62);
  font-size: 0.88rem;
}

.brand-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #34d399, #14b8a6);
  box-shadow: 0 0 0 7px rgba(20, 184, 166, 0.12);
}

.sidebar-nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.sidebar-actions {
  margin-top: 4px;
}

.sidebar-actions .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sidebar-ink);
  border-color: rgba(255, 255, 255, 0.16);
}

.sidebar-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.sidebar-footer {
  margin-top: auto;
}

.nav-link {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--sidebar-ink);
  text-align: left;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}

.nav-link span:last-child {
  color: rgba(232, 238, 242, 0.55);
  font-size: 0.78rem;
}

.identity-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}

.identity-card p {
  margin: 6px 0 0;
  color: rgba(232, 238, 242, 0.68);
  font-size: 0.88rem;
}

.main-shell {
  padding: 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  margin-bottom: 24px;
}

.topbar h1 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.topbar-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #f8fafc;
}

.language-switch .lang-toggle-button,
.auth-language-switch .lang-toggle-button {
  min-width: 44px;
  padding: 8px 12px;
}

.language-switch .lang-toggle-button.active,
.auth-language-switch .lang-toggle-button.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.pill {
  padding: 10px 14px;
  background: white;
  font-weight: 700;
}

.content {
  display: grid;
  gap: 20px;
}

.hero-card {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(29, 78, 216, 0.08)),
    white;
}

.auth-language-switch {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  gap: 6px;
  z-index: 2;
}

.hero-card p {
  color: var(--muted);
  max-width: 56rem;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-card,
.metric-card,
.list-card,
.analysis-card,
.panel {
  padding: 22px;
}

.analysis-card {
  position: relative;
}

.panel-inline-actions {
  display: grid;
  gap: 12px;
}

.panel-inline-actions-spaced {
  margin-top: 16px;
}

.panel-inline-actions-row {
  margin-top: 4px;
}

.analysis-card-footer-notes {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.required-mark {
  color: #dc2626;
  font-weight: 800;
}

.module-card header,
.panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.module-card p,
.panel p,
.list-card p,
.analysis-card p {
  color: var(--muted);
}

.meta-list,
.simple-list,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.meta-list span,
.simple-list span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #eef4f8;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.inline-actions {
  margin-top: 14px;
}

td .inline-actions {
  margin-top: 0;
  gap: 10px;
}

.kpi-value {
  font-size: 2rem;
  font-weight: 800;
  margin: 10px 0 0;
}

.kpi-caption {
  color: var(--muted);
  margin-top: 8px;
}

.org-slug {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.analysis-uploader {
  display: grid;
  gap: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.camera-panel {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fafc;
}

.camera-panel .row {
  flex-wrap: wrap;
}

.camera-panel video {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 14px;
  background: #0f172a;
}

.options-grid {
  display: grid;
  gap: 14px;
}

.options-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-box,
.chart-box {
  min-height: 240px;
  border: 1px dashed #b7c7d3;
  border-radius: 18px;
  background: linear-gradient(180deg, #fafcfd, #f2f7fa);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.chart-grid {
  display: grid;
  gap: 18px;
}

.chart-card {
  display: grid;
  gap: 10px;
}

.chart-card strong {
  font-size: 0.98rem;
  color: #0f172a;
}

.chart-card .muted {
  margin: 0;
}

.preview-box-editor {
  place-items: start center;
  overflow: auto;
}

.preview-box img {
  display: block;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  pointer-events: none;
}

.preview-box canvas {
  display: block;
  max-width: 100%;
  max-height: 340px;
  pointer-events: none;
}

.chart-box canvas {
  display: block;
  width: 100%;
  height: auto;
}

#staticCanvas {
  pointer-events: auto;
  max-width: none;
  max-height: none;
}

#lateralCanvas {
  pointer-events: auto;
  max-width: none;
  max-height: none;
}

.local-note,
.status-box,
.empty-state {
  padding: 16px;
}

.status-ok {
  color: var(--success);
}

.status-warning {
  color: var(--warning);
}

.status-danger {
  color: var(--danger);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid #edf2f7;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4f8;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.1;
}

.tag.active {
  color: var(--success);
  background: #def7ec;
}

.tag.inactive {
  color: var(--danger);
  background: #fde8e8;
}

.tag.role {
  color: var(--accent);
  background: #dbeafe;
}

.row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}

.analysis-uploader .row,
.panel .row {
  margin-top: 6px;
}

.module-toggle-grid {
  margin-top: 18px;
}

.module-toggle-card {
  display: grid;
  gap: 14px;
}

.module-toggle-card .row {
  align-items: flex-start;
}

.form-actions {
  margin-top: 14px;
}

.admin-modules-panel > .field {
  margin-top: 10px;
}

.admin-storage-grid {
  align-items: start;
}

.admin-storage-impact {
  min-height: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfcfd;
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-storage-impact strong {
  font-size: 0.98rem;
  color: var(--ink);
}

.admin-storage-impact .muted {
  margin: 0;
  line-height: 1.5;
}

.module-toggle-head {
  gap: 10px;
}

.module-toggle-head input[type="checkbox"] {
  margin-top: 3px;
}

.annotated-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.annotated-card {
  display: grid;
  gap: 10px;
}

.chart-grid {
  display: grid;
  gap: 18px;
}

.chart-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chart-card {
  display: grid;
  gap: 10px;
}

.chart-card .muted {
  margin: 0;
}

.chart-box canvas {
  display: block;
  width: 100%;
  height: auto;
}

.dynamic-frame-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.frame-card {
  display: grid;
  gap: 10px;
  margin: 0;
}

.frame-card img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border: 1px dashed #b7c7d3;
  border-radius: 16px;
  background: linear-gradient(180deg, #fafcfd, #f2f7fa);
}

.frame-card figcaption {
  font-weight: 700;
  color: #0f172a;
}

.dossiers-layout {
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  align-items: start;
}

.synchronized-layout {
  align-items: start;
}

.dossiers-sidebar {
  position: sticky;
  top: 24px;
}

.dossiers-list {
  display: grid;
  gap: 12px;
}

.patient-folder-card {
  width: 100%;
  display: grid;
  gap: 6px;
  text-align: left;
  border: 1px solid #d7e2e9;
  border-radius: 18px;
  background: #f8fbfc;
  padding: 16px;
  color: #102033;
}

.patient-folder-card strong {
  font-size: 1rem;
}

.patient-folder-card span {
  color: var(--muted);
}

.patient-folder-card .tag {
  justify-self: start;
  color: var(--brand);
}

.patient-folder-card.active {
  border-color: rgba(15, 118, 110, 0.28);
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.95));
}

.stack {
  display: grid;
  gap: 20px;
}

.synchronized-actions {
  margin-top: 18px;
}

.synchronized-slot-grid {
  align-items: start;
}

.synchronized-slot-card {
  min-width: 0;
}

.synchronized-slot-empty {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.synchronized-slot-empty p {
  margin: 0;
  text-align: center;
}

.synchronized-slot-actions {
  margin-top: 0;
}

.synchronized-progress-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 6px;
}

.synchronized-progress-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(248, 250, 252, 0.7);
}

.synchronized-progress-card.inactive {
  opacity: 0.72;
}

.synchronized-progress-head {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.synchronized-progress-head strong {
  font-size: 0.95rem;
}

.synchronized-progress-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
}

.synchronized-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f766e 0%, #14b8a6 100%);
}

.synchronized-video-grid {
  align-items: start;
}

.synchronized-video-card {
  min-width: 0;
}

.synchronized-wall {
  display: grid;
  gap: 14px;
  padding: 8px;
  border-radius: 24px;
  background: #0f172a;
}

.synchronized-wall-header {
  align-items: start;
  gap: 16px;
}

.synchronized-wall-header p {
  margin: 6px 0 0;
}

.synchronized-wall-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 16px;
}

.synchronized-wall-select {
  flex: 1 1 320px;
  max-width: 520px;
}

.synchronized-wall-controls {
  justify-content: flex-end;
  margin-left: auto;
}

.synchronized-wall-grid {
  display: grid;
  gap: 2px;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
}

.synchronized-wall-grid-1 {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.synchronized-wall-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.synchronized-wall-grid-3,
.synchronized-wall-grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.synchronized-wall-tile {
  position: relative;
  min-width: 0;
  background: #0f172a;
}

.synchronized-wall-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}

.synchronized-wall-preview {
  position: relative;
  min-height: 320px;
  height: 100%;
  background: #0f172a;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.synchronized-wall-stage {
  position: relative;
  display: inline-block;
}

.synchronized-wall-stage > .synchronized-session-video,
.synchronized-wall-stage > .synchronized-session-video {
  transform: rotate(var(--sync-rotation, 0deg));
  transform-origin: center center;
}

.synchronized-wall-stage > .synchronized-session-overlay {
  transform: rotate(var(--sync-rotation, 0deg));
  transform-origin: center center;
}

.synchronized-wall-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  background: #0f172a;
  pointer-events: none;
}

.synchronized-preview-box {
  min-height: 280px;
  align-items: stretch;
}

.synchronized-preview-box video,
.synchronized-session-video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #0f172a;
}

.synchronized-wall-grid-1 .synchronized-wall-preview {
  min-height: 540px;
}

.synchronized-session-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.synchronized-wall .muted {
  margin: 0;
  color: #c7d2da;
}

.hidden {
  display: none !important;
}

.loader-text {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .auth-body {
    height: auto;
    overflow: auto;
  }

  .auth-shell,
  .app-shell,
  .split,
  .options-grid-3,
  .annotated-grid,
  .dynamic-frame-grid,
  .chart-grid-2,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .auth-shell {
    height: auto;
  }

  .auth-panel {
    padding: 28px;
  }

  .synchronized-wall-grid-2,
  .synchronized-wall-grid-3,
  .synchronized-wall-grid-4 {
    grid-template-columns: 1fr;
  }

  .synchronized-progress-grid {
    grid-template-columns: 1fr;
  }

  .synchronized-wall-toolbar {
    align-items: stretch;
  }

  .synchronized-wall-controls {
    width: 100%;
    justify-content: stretch;
    margin-left: 0;
  }

  .auth-highlights {
    grid-template-columns: 1fr;
  }

  .main-shell {
    padding: 18px;
  }
}
