:root {
  color-scheme: light;
  --navy-950: #0b172b;
  --navy-900: #12233f;
  --navy-800: #193255;
  --indigo-600: #5368e8;
  --indigo-700: #4054cf;
  --cyan-400: #5be0d0;
  --amber-400: #ffbd5c;
  --rose-500: #e95570;
  --green-600: #16846f;
  --ink-950: #142033;
  --ink-700: #45546a;
  --ink-500: #718096;
  --line: #dce4ee;
  --line-strong: #c8d3e1;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --surface-tint: #eef1ff;
  --shadow-sm: 0 8px 26px rgba(25, 50, 85, .08);
  --shadow-lg: 0 28px 80px rgba(11, 23, 43, .2);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--surface-soft);
  color: var(--ink-950);
  font-family: inherit;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(83, 104, 232, .25);
  outline-offset: 2px;
}

[hidden] { display: none !important; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.025em; line-height: 1.15; }
h1 { font-size: clamp(1.55rem, 2vw, 2.1rem); margin-bottom: 0; }
h2 { font-size: 1.5rem; margin-bottom: .45rem; }
h3 { font-size: 1.05rem; margin-bottom: .35rem; }

.muted { color: var(--ink-500); }
.eyebrow {
  margin-bottom: .5rem;
  color: var(--indigo-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: inherit;
  font-size: 1.13rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-lockup--large { font-size: 1.35rem; }
.brand-mark { display: inline-flex; align-items: end; gap: 3px; width: 32px; height: 34px; }
.brand-mark span { display: block; width: 8px; border-radius: 5px; }
.brand-mark span:nth-child(1) { height: 25px; background: var(--cyan-400); }
.brand-mark span:nth-child(2) { height: 34px; background: #7182ff; }
.brand-mark span:nth-child(3) { height: 20px; background: var(--amber-400); }

.auth-view { min-height: 100vh; display: grid; grid-template-columns: minmax(360px, 1.05fr) minmax(440px, .95fr); }
.auth-brand {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem);
  color: #fff;
  background:
    radial-gradient(circle at 76% 18%, rgba(91, 224, 208, .23), transparent 24%),
    radial-gradient(circle at 15% 82%, rgba(99, 118, 255, .26), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}
.auth-brand::before, .auth-brand::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}
.auth-brand::before { width: 460px; height: 460px; top: -180px; right: -140px; }
.auth-brand::after { width: 620px; height: 620px; bottom: -360px; left: -200px; }
.auth-message { max-width: 660px; padding: 5rem 0; }
.auth-message .eyebrow { color: var(--cyan-400); }
.auth-message h1 { max-width: 620px; margin-bottom: 1.25rem; font-size: clamp(2.5rem, 5.4vw, 5.2rem); }
.auth-message p:last-child { max-width: 590px; color: #cfdaea; font-size: 1.12rem; }
.auth-trust { display: flex; flex-wrap: wrap; gap: .65rem; }
.auth-trust span { padding: .5rem .75rem; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #dce6f3; font-size: .8rem; }
.auth-form-wrap { display: grid; place-items: center; min-height: 100vh; padding: 2rem; background: #f8faff; }
.auth-card { display: grid; gap: 1.25rem; width: min(100%, 430px); padding: clamp(1.5rem, 4vw, 2.7rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-lg); }
.auth-card--wide { width: min(100%, 720px); }
.mobile-brand { display: none; color: var(--navy-900); }
.auth-help { margin: -.25rem 0 0; color: var(--ink-500); font-size: .82rem; text-align: center; }
.auth-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .3rem; padding: .3rem; border: 1px solid var(--line); border-radius: 12px; background: #f4f7fb; }
.auth-tab { min-height: 38px; padding: .45rem .35rem; border: 0; border-radius: 9px; background: transparent; color: var(--ink-700); font-size: .73rem; font-weight: 800; }
.auth-tab.is-active { background: #fff; color: var(--indigo-600); box-shadow: var(--shadow-sm); }
.auth-panel { display: grid; gap: .9rem; }
.signup-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-height: min(58vh, 590px); padding-right: .25rem; overflow-y: auto; scrollbar-width: thin; }
.bootstrap-card { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }

.field { display: grid; gap: .45rem; min-width: 0; }
.field > span:first-child { color: var(--ink-700); font-size: .87rem; font-weight: 700; }
.field small { color: var(--ink-500); font-size: .76rem; }
.field input, .field select, .field textarea, .search-field {
  width: 100%;
  min-height: 46px;
  padding: .72rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink-950);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:hover, .field select:hover, .field textarea:hover, .search-field:hover { border-color: #9eacc0; }
.field input:focus, .field select:focus, .field textarea:focus, .search-field:focus { border-color: var(--indigo-600); box-shadow: 0 0 0 3px rgba(83,104,232,.12); outline: 0; }
.field textarea { resize: vertical; }
.password-field { position: relative; display: block; }
.password-field input { padding-right: 4.4rem; }
.password-field .text-button { position: absolute; top: 50%; right: .65rem; transform: translateY(-50%); }
.text-button { padding: .35rem .45rem; border: 0; background: transparent; color: var(--indigo-600); font-size: .8rem; font-weight: 800; }
.form-error { margin: 0; padding: .75rem .9rem; border: 1px solid #fecdd6; border-radius: var(--radius-sm); background: #fff1f3; color: #a51d3a; font-size: .88rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .68rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 750;
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.button:hover { transform: translateY(-1px); }
.button:disabled { cursor: not-allowed; opacity: .6; transform: none; }
.button--primary { background: var(--indigo-600); color: #fff; box-shadow: 0 8px 18px rgba(83,104,232,.2); }
.button--primary:hover { background: var(--indigo-700); }
.button--secondary { border-color: var(--line-strong); background: #fff; color: var(--ink-700); }
.button--secondary:hover { border-color: #9eacc0; background: var(--surface-soft); }
.button--ghost { background: transparent; color: var(--ink-700); }
.button--ghost:hover { background: #edf2f8; }
.button--danger { background: #fff0f2; color: #b42341; border-color: #ffd1da; }
.button--wide { width: 100%; }
.button--compact { min-height: 38px; padding: .48rem .72rem; font-size: .84rem; }
.icon-button { display: inline-grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 10px; background: transparent; color: inherit; font-size: 1.5rem; }
.icon-button:hover { background: rgba(113,128,150,.12); }

.app-view { min-height: 100vh; }
.sidebar { position: fixed; inset: 0 auto 0 0; z-index: 30; display: flex; flex-direction: column; width: 276px; padding: 1.1rem; overflow-y: auto; color: #fff; background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); }
.sidebar-brand { display: flex; align-items: center; justify-content: space-between; padding: .4rem .55rem 1rem; }
.sidebar-close { display: none; }
.school-identity { display: flex; align-items: center; gap: .75rem; padding: .8rem; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.06); }
.school-monogram { display: grid; flex: 0 0 auto; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(145deg, var(--cyan-400), #35b9d3); color: var(--navy-950); font-weight: 900; }
.school-identity div:last-child { display: grid; min-width: 0; }
.school-identity strong { overflow: hidden; color: #fff; font-size: .88rem; text-overflow: ellipsis; white-space: nowrap; }
.school-identity span { color: #aebed4; font-size: .72rem; }
.primary-nav { display: grid; gap: .24rem; margin-top: 1.1rem; }
.nav-item { display: flex; align-items: center; gap: .85rem; width: 100%; min-height: 46px; padding: .7rem .82rem; border: 0; border-radius: 11px; background: transparent; color: #f7fbff; font-size: .9rem; font-weight: 680; text-align: left; }
.nav-item > span { display: grid; place-items: center; width: 24px; color: #9fb1ca; font-size: 1.05rem; }
.nav-item:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-item.is-active { background: #fff; color: var(--navy-900); box-shadow: 0 8px 22px rgba(0,0,0,.16); }
.nav-item.is-active > span { color: var(--indigo-600); }
.sidebar-footer { display: flex; align-items: center; gap: .7rem; margin-top: auto; padding: 1rem .5rem .25rem; border-top: 1px solid rgba(255,255,255,.1); }
.user-avatar { display: grid; flex: 0 0 auto; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: #6c7cf4; color: #fff; font-weight: 850; }
.sidebar-user { display: grid; min-width: 0; }
.sidebar-user strong { overflow: hidden; font-size: .84rem; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-user span { color: #aebed4; font-size: .72rem; }
.app-main { min-height: 100vh; margin-left: 276px; }
.topbar { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 1rem; min-height: 82px; padding: .8rem clamp(1rem, 3vw, 2.5rem); border-bottom: 1px solid rgba(220,228,238,.85); background: rgba(248,250,255,.92); backdrop-filter: blur(14px); }
.topbar-title { display: grid; }
.topbar-title > span { color: var(--ink-500); font-size: .75rem; font-weight: 700; }
.topbar-title h1 { font-size: 1.4rem; }
.topbar-actions { display: flex; align-items: center; gap: .45rem; margin-left: auto; }
.menu-button { display: none; }
.sync-pill { display: inline-flex; align-items: center; gap: .4rem; margin-right: .25rem; color: var(--green-600); font-size: .78rem; font-weight: 750; }
.sync-pill span { width: 8px; height: 8px; border-radius: 50%; background: #24ad90; box-shadow: 0 0 0 4px rgba(36,173,144,.12); }
.page-content { width: min(100%, 1600px); margin: 0 auto; padding: clamp(1rem, 3vw, 2.5rem); }

.page-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.page-heading p { margin: .35rem 0 0; color: var(--ink-500); }
.heading-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.context-banner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; padding: 1rem 1.15rem; border: 1px solid #cfd7ff; border-radius: var(--radius); background: linear-gradient(115deg, #eef1ff, #f5fbff); }
.context-banner strong { color: var(--navy-900); }
.context-banner span { color: var(--ink-700); font-size: .88rem; }

.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.metric-card, .panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.metric-card { position: relative; min-height: 150px; overflow: hidden; padding: 1.15rem; }
.metric-card::after { content: ""; position: absolute; right: -30px; bottom: -45px; width: 120px; height: 120px; border-radius: 50%; background: var(--metric-tint, #edf0ff); }
.metric-card > span { color: var(--ink-500); font-size: .82rem; font-weight: 700; }
.metric-card strong { display: block; margin: .65rem 0 .2rem; font-size: 2rem; line-height: 1; }
.metric-card small { color: var(--ink-500); }
.metric-card--indigo { --metric-tint: #e9ecff; border-top: 4px solid var(--indigo-600); }
.metric-card--cyan { --metric-tint: #e0fbf7; border-top: 4px solid #36c8b6; }
.metric-card--amber { --metric-tint: #fff4df; border-top: 4px solid var(--amber-400); }
.metric-card--rose { --metric-tint: #ffedf1; border-top: 4px solid var(--rose-500); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .8fr); gap: 1rem; margin-top: 1rem; }
.panel { min-width: 0; padding: 1.15rem; }
.panel-header { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: 1rem; }
.panel-header h2 { margin: 0; font-size: 1.05rem; }
.table-pad { padding: 1.15rem 1.15rem 0; }
.quick-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; }
.quick-action { display: grid; gap: .18rem; min-height: 92px; padding: .85rem; border: 1px solid var(--line); border-radius: 12px; background: #fbfcff; color: var(--ink-950); text-align: left; }
.quick-action:hover { border-color: #b8c2ff; background: var(--surface-tint); }
.quick-action strong { font-size: .86rem; }
.quick-action span { color: var(--ink-500); font-size: .75rem; }
.alert-list, .activity-list { display: grid; gap: .55rem; }
.alert-item, .activity-item { display: grid; grid-template-columns: auto 1fr; gap: .7rem; padding: .75rem; border: 1px solid var(--line); border-radius: 11px; }
.alert-dot { width: 9px; height: 9px; margin-top: .42rem; border-radius: 50%; background: var(--amber-400); }
.alert-item[data-severity="Critical"] .alert-dot { background: var(--rose-500); }
.alert-item[data-severity="Notice"] .alert-dot { background: var(--indigo-600); }
.alert-item strong, .activity-item strong { display: block; font-size: .83rem; }
.alert-item p, .activity-item p { margin: .15rem 0 0; color: var(--ink-500); font-size: .76rem; }
.empty-state { padding: 2.2rem 1rem; color: var(--ink-500); text-align: center; }

.toolbar { display: flex; flex-wrap: wrap; align-items: end; gap: .65rem; margin-bottom: 1rem; }
.toolbar .field { min-width: 180px; }
.toolbar .search-wrap { flex: 1 1 280px; }
.section-tabs { display: flex; gap: .35rem; margin-bottom: 1rem; padding: .35rem; overflow-x: auto; border: 1px solid var(--line); border-radius: 13px; background: #fff; scrollbar-width: thin; }
.section-tab { flex: 0 0 auto; min-height: 40px; padding: .55rem .8rem; border: 0; border-radius: 9px; background: transparent; color: var(--ink-700); font-size: .82rem; font-weight: 750; white-space: nowrap; }
.section-tab:hover { background: #f1f4f9; }
.section-tab.is-active { background: var(--navy-900); color: #fff; }
.split-layout { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.5fr); gap: 1rem; }
.editor-card { align-self: start; }
.editor-form { display: grid; gap: .85rem; }
.editor-actions { display: flex; flex-wrap: wrap; gap: .5rem; padding-top: .25rem; }
.choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .55rem; padding-top: .45rem; }
.choice-grid label { padding: .6rem .7rem; border: 1px solid var(--line); border-radius: 9px; background: #fafbff; font-size: .84rem; }
.report-preview { margin-top: 1rem; }
.results-table { min-width: 1040px; }
.compact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .75rem; }
.attendance-grid select, .attendance-grid input { min-height: 40px; padding: .48rem .58rem; border: 1px solid var(--line-strong); border-radius: 8px; background: #fff; }
.danger-link { border: 0; background: transparent; color: #b42341; font-size: .78rem; font-weight: 800; }
.edit-link { border: 0; background: transparent; color: var(--indigo-600); font-size: .78rem; font-weight: 800; }
.search-wrap { display: grid; gap: .4rem; }
.search-wrap > span { color: var(--ink-700); font-size: .82rem; font-weight: 700; }
.table-panel { padding: 0; overflow: hidden; }
.table-scroll { width: 100%; overflow: auto; overscroll-behavior-inline: contain; }
.table-scroll--tall { max-height: min(68vh, 760px); overflow: auto; scrollbar-width: thin; }
.data-table { width: 100%; min-width: 820px; border-collapse: collapse; }
.data-table th { position: sticky; top: 0; z-index: 1; padding: .78rem .85rem; border-bottom: 1px solid var(--line); background: #f4f7fb; color: var(--ink-700); font-size: .74rem; font-weight: 800; letter-spacing: .035em; text-align: left; text-transform: uppercase; white-space: nowrap; }
.data-table td { padding: .85rem; border-bottom: 1px solid #e8edf4; color: var(--ink-700); font-size: .86rem; vertical-align: middle; }
.data-table tbody tr:hover { background: #fafbff; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.cell-primary { color: var(--ink-950); font-weight: 750; }
.cell-secondary { display: block; margin-top: .1rem; color: var(--ink-500); font-size: .74rem; }
.message-cell { display: block; min-width: 240px; max-width: 480px; white-space: normal; overflow-wrap: anywhere; }
.table-input { min-width: 150px; min-height: 38px; padding: .45rem .55rem; border: 1px solid var(--line-strong); border-radius: 8px; background: #fff; color: var(--ink-950); }
.settings-image { display: block; width: 112px; height: 82px; margin-bottom: .45rem; border: 1px solid var(--line); border-radius: 9px; background: #f7f9fc; object-fit: contain; }
.status-badge { display: inline-flex; align-items: center; padding: .25rem .52rem; border-radius: 999px; background: #e7f8f3; color: #12715f; font-size: .72rem; font-weight: 800; }
.status-badge--muted { background: #edf1f6; color: #59677a; }
.table-actions { display: flex; gap: .35rem; }
.loading-grid { display: grid; gap: .7rem; }
.skeleton { height: 92px; border-radius: var(--radius); background: linear-gradient(90deg, #edf1f6 25%, #f8faff 38%, #edf1f6 63%); background-size: 400% 100%; animation: shimmer 1.3s infinite; }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

.modal { width: min(760px, calc(100% - 2rem)); max-height: calc(100vh - 2rem); padding: 0; border: 0; border-radius: var(--radius-lg); background: transparent; box-shadow: var(--shadow-lg); }
.modal::backdrop { background: rgba(9, 20, 38, .68); backdrop-filter: blur(4px); }
.modal-card { padding: clamp(1.2rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.modal-header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.modal-header h2 { margin: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .95rem; }
.field--wide { grid-column: 1 / -1; }
.modal-actions { display: flex; justify-content: flex-end; gap: .55rem; margin-top: 1.3rem; }
.toast-region { position: fixed; top: 1rem; right: 1rem; z-index: 100; display: grid; gap: .5rem; width: min(380px, calc(100% - 2rem)); }
.toast { padding: .9rem 1rem; border: 1px solid #b9eadf; border-radius: 12px; background: #f0fcf8; color: #11604f; box-shadow: var(--shadow-lg); font-size: .87rem; font-weight: 700; animation: toast-in .2s ease; }
.toast--error { border-color: #ffcbd5; background: #fff3f5; color: #a51d3a; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-8px); } }

@media (max-width: 1180px) {
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .auth-view { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
  .auth-form-wrap { min-height: 100svh; padding: 1rem; }
  .mobile-brand { display: inline-flex; margin-bottom: .4rem; }
  .sidebar { transform: translateX(-102%); transition: transform .2s ease; box-shadow: var(--shadow-lg); }
  .sidebar.is-open { transform: translateX(0); }
  .sidebar-close, .menu-button { display: inline-grid; }
  .nav-scrim { position: fixed; inset: 0; z-index: 25; background: rgba(9,20,38,.55); }
  .app-main { margin-left: 0; }
  .split-layout { grid-template-columns: 1fr; }
  .topbar { min-height: 72px; }
  .topbar-actions .button--secondary { display: none; }
}

@media (max-width: 620px) {
  .topbar { gap: .55rem; padding-inline: .7rem; }
  .topbar-title > span, .sync-pill { display: none; }
  .topbar-title h1 { max-width: 160px; overflow: hidden; font-size: 1.05rem; text-overflow: ellipsis; white-space: nowrap; }
  .topbar-actions { gap: .1rem; }
  .button--compact { min-height: 40px; padding-inline: .58rem; }
  .page-content { padding: .85rem; }
  .page-heading { align-items: stretch; flex-direction: column; }
  .heading-actions .button { flex: 1; }
  .context-banner { align-items: start; flex-direction: column; }
  .metric-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .metric-card { min-height: 128px; padding: .9rem; }
  .metric-card strong { font-size: 1.55rem; }
  .quick-grid { grid-template-columns: 1fr; }
  .compact-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .signup-grid { grid-template-columns: 1fr; max-height: none; overflow: visible; }
  .field--wide { grid-column: auto; }
  .modal { width: 100%; max-height: 94svh; margin: auto 0 0; border-radius: 22px 22px 0 0; }
  .modal-card { max-height: 94svh; overflow-y: auto; border-radius: 22px 22px 0 0; }
  .modal-actions { position: sticky; bottom: -2rem; margin-inline: -1.2rem; padding: .9rem 1.2rem calc(.9rem + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; }
}

@media (max-width: 420px) {
  .metric-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .sidebar, .topbar, .page-heading, .section-tabs, #report-filter, .heading-actions, .toast-region { display: none !important; }
  .app-main { margin: 0; }
  .page-content { width: 100%; padding: 0; }
  .panel { border: 0; box-shadow: none; }
  .table-scroll, .table-scroll--tall { max-height: none; overflow: visible; }
  .data-table { min-width: 0; font-size: 9pt; }
  .data-table th { position: static; color: #000; background: #eee; }
  .data-table td, .data-table th { padding: 6pt; }
}
