@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  --portal-navy-950: #071b2a;
  --portal-navy-900: #0a2436;
  --portal-navy-800: #12364d;
  --portal-blue-600: #17658d;
  --portal-blue-500: #2383b2;
  --portal-blue-100: #e7f3f8;
  --portal-slate-700: #334b5b;
  --portal-slate-600: #546b78;
  --portal-slate-400: #91a4ae;
  --portal-slate-200: #d8e1e6;
  --portal-slate-100: #edf2f4;
  --portal-paper: #ffffff;
  --portal-bg: #f4f7f8;
  --portal-green: #17704b;
  --portal-green-bg: #e4f4ec;
  --portal-yellow: #8a5b00;
  --portal-yellow-bg: #fff3ce;
  --portal-red: #a03737;
  --portal-red-bg: #fbe8e8;
  --portal-radius: 8px;
  --portal-shadow: 0 18px 50px rgba(7, 27, 42, .10);
  --portal-font: "Public Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

.portal-body,
.admin-body,
.install-body {
  margin: 0;
  color: var(--portal-navy-950);
  background: var(--portal-bg);
  font-family: var(--portal-font);
  -webkit-font-smoothing: antialiased;
}

.portal-body a,
.admin-body a,
.install-body a { color: inherit; }

.portal-container,
.admin-container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.portal-skip {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--portal-blue-600);
  transform: translateY(-150%);
}

.portal-skip:focus { transform: translateY(0); }

.portal-utility {
  color: #b9c8d1;
  background: var(--portal-navy-950);
  font-size: 12px;
  letter-spacing: .025em;
}

.portal-utility .portal-container {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portal-nav {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--portal-slate-200);
  background: #fff;
}

.portal-nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.portal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--portal-navy-950);
  text-decoration: none;
}

.portal-brand > span:last-child { display: grid; gap: 2px; }
.portal-brand strong { font-size: 17px; line-height: 1; letter-spacing: -.02em; }
.portal-brand strong em { color: var(--portal-blue-500); font-style: normal; }
.portal-brand small { color: var(--portal-slate-600); font-size: 10px; }

.portal-shield {
  width: 38px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--portal-blue-600);
  font-weight: 800;
  clip-path: polygon(50% 0, 93% 16%, 88% 68%, 50% 100%, 12% 68%, 7% 16%);
}

.portal-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.portal-links a { text-decoration: none; }
.portal-links a:hover,
.portal-links .is-active { color: var(--portal-blue-600); }

.portal-admin-link {
  padding: 9px 14px;
  border: 1px solid var(--portal-slate-200);
  border-radius: 5px;
}

.portal-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 70px;
  color: #fff;
  background: var(--portal-navy-900);
}

.portal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 65%);
}

.portal-hero .portal-container { position: relative; z-index: 1; }
.portal-kicker { margin: 0 0 11px; color: var(--portal-blue-500); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.portal-hero .portal-kicker { color: #8bc5df; }
.portal-hero h1 { max-width: 780px; margin: 0; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -.04em; }
.portal-hero p:not(.portal-kicker) { max-width: 680px; margin: 21px 0 0; color: #c8d5dc; font-size: 17px; line-height: 1.7; }

.lookup-panel {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 40px));
  margin: -35px auto 52px;
  padding: 28px;
  border: 1px solid var(--portal-slate-200);
  border-top: 4px solid var(--portal-blue-500);
  border-radius: var(--portal-radius);
  background: #fff;
  box-shadow: var(--portal-shadow);
}

.lookup-panel h2 { margin: 0; font-size: 23px; letter-spacing: -.025em; }
.lookup-panel > p { margin: 9px 0 21px; color: var(--portal-slate-600); line-height: 1.6; }
.lookup-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.lookup-form label { grid-column: 1 / -1; color: var(--portal-slate-700); font-size: 13px; font-weight: 750; }
.lookup-form input {
  min-width: 0;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #bac9d1;
  border-radius: 5px;
  color: var(--portal-navy-950);
  font: 700 16px var(--portal-font);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.lookup-form input:focus,
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus,
.install-field input:focus {
  border-color: var(--portal-blue-500);
  outline: 3px solid rgba(35, 131, 178, .15);
}

.portal-button,
.admin-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #fff !important;
  background: var(--portal-blue-600);
  font: 750 14px var(--portal-font);
  text-decoration: none;
  cursor: pointer;
}

.portal-button:hover,
.admin-button:hover { background: #0f557a; }
.portal-button-secondary,
.admin-button-secondary { color: var(--portal-navy-900) !important; border-color: #b9c8d0; background: #fff; }
.portal-button-secondary:hover,
.admin-button-secondary:hover { background: var(--portal-slate-100); }
.admin-button-danger { background: #a43b3b; }
.admin-button-danger:hover { background: #832c2c; }
.admin-button-small { min-height: 36px; padding-inline: 12px; font-size: 12px; }

.lookup-error {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto 32px;
  padding: 14px 17px;
  border: 1px solid #efb9b9;
  border-left: 4px solid var(--portal-red);
  border-radius: 5px;
  color: #7e2929;
  background: #fff5f5;
}

.report-wrap { padding: 48px 0 76px; }
.public-report-card {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--portal-slate-200);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--portal-shadow);
}

.report-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 42px;
  border-bottom: 1px solid var(--portal-slate-200);
  background: linear-gradient(120deg, #fff, #f3f8fa);
}

.report-title-row h1 { margin: 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.035em; }
.main-status,
.institution-status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.main-status { min-height: 36px; padding: 0 14px; }
.institution-status { min-height: 28px; padding: 0 10px; font-size: 10px; }
.status-blue { color: #0d608d; background: #dff2fb; }
.status-green { color: var(--portal-green); background: var(--portal-green-bg); }
.status-yellow { color: var(--portal-yellow); background: var(--portal-yellow-bg); }
.status-red { color: var(--portal-red); background: var(--portal-red-bg); }
.status-gray { color: #49606d; background: #e9eff2; }

.report-section { padding: 34px 42px; border-bottom: 1px solid var(--portal-slate-200); }
.report-section h2 { margin: 0 0 24px; font-size: 20px; letter-spacing: -.02em; }
.report-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; }
.report-field { min-width: 0; padding: 17px 0; border-top: 1px solid var(--portal-slate-100); }
.report-field:nth-child(odd) { padding-right: 30px; }
.report-field:nth-child(even) { padding-left: 30px; border-left: 1px solid var(--portal-slate-100); }
.report-field dt { margin: 0 0 7px; color: var(--portal-slate-600); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.report-field dd { min-height: 23px; margin: 0; overflow-wrap: anywhere; color: var(--portal-navy-950); font-size: 16px; font-weight: 680; line-height: 1.45; }
.report-field a { color: var(--portal-blue-600); text-underline-offset: 3px; }

.privacy-mask {
  position: relative;
  width: 172px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  border-radius: 5px;
  vertical-align: middle;
  background: linear-gradient(100deg, #c5cdd2 0 25%, #aeb9bf 37%, #d0d7db 52%, #aab6bd 70%, #c9d1d5 100%);
  filter: blur(3.5px);
  user-select: none;
}

.privacy-mask::after {
  content: "";
  position: absolute;
  inset: -10px;
  background: repeating-linear-gradient(90deg, transparent 0 12px, rgba(255,255,255,.24) 12px 17px);
}

.privacy-mask i { width: 43px; height: 7px; background: rgba(55, 72, 82, .55); }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.reason-copy { color: var(--portal-slate-700); font-size: 16px; line-height: 1.75; }
.institution-list { display: grid; gap: 12px; }
.institution-card { padding: 20px; border: 1px solid var(--portal-slate-200); border-radius: 6px; background: #fbfcfd; }
.institution-main { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.institution-card h3 { margin: 0; font-size: 16px; }
.institution-card time { display: block; margin-top: 10px; color: var(--portal-slate-600); font-size: 13px; font-weight: 650; }
.institution-card p { margin: 12px 0 0; color: var(--portal-slate-600); font-size: 14px; line-height: 1.6; }

.public-timeline { position: relative; display: grid; gap: 22px; margin: 0; padding: 0; list-style: none; }
.public-timeline::before { content: ""; position: absolute; top: 9px; bottom: 9px; left: 6px; width: 1px; background: #bfd0d9; }
.public-timeline li { position: relative; display: grid; grid-template-columns: 14px 1fr; gap: 18px; }
.timeline-dot { z-index: 1; width: 13px; height: 13px; margin-top: 4px; border: 3px solid #fff; border-radius: 50%; background: var(--portal-blue-500); box-shadow: 0 0 0 1px var(--portal-blue-500); }
.public-timeline time { color: var(--portal-blue-600); font-size: 12px; font-weight: 800; }
.public-timeline h3 { margin: 4px 0 0; font-size: 15px; }
.public-timeline p { margin: 6px 0 0; color: var(--portal-slate-600); font-size: 14px; line-height: 1.55; }
.report-disclaimer { padding: 25px 42px; color: #5d4b22; background: #fff9e8; }
.report-disclaimer strong { font-size: 13px; }
.report-disclaimer p { margin: 6px 0 0; font-size: 13px; line-height: 1.55; }
.portal-footer { padding: 35px 0; color: #b8c8d1; background: var(--portal-navy-950); }
.portal-footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.portal-footer strong { color: #fff; }
.portal-footer p { margin: 6px 0 0; font-size: 12px; line-height: 1.6; }

/* Lookup block injected into the original landing page. */
.home-lookup-section { padding: 78px 0; background: #f3f7f9; }
.home-lookup-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: center; }
.home-lookup-copy h2 { margin: 8px 0 16px; color: #0b2638; font-size: clamp(31px, 4vw, 45px); line-height: 1.1; letter-spacing: -.035em; }
.home-lookup-copy p:not(.kicker) { margin: 0; color: #5d707b; line-height: 1.7; }
.home-lookup-card { padding: 30px; border: 1px solid #d8e2e7; border-top: 4px solid #2383b2; border-radius: 8px; background: #fff; box-shadow: 0 18px 45px rgba(8, 34, 51, .08); }
.home-lookup-card label { display: block; margin-bottom: 9px; color: #324b5b; font-size: 13px; font-weight: 760; }
.home-lookup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}
.home-lookup-form label,
.home-lookup-form input,
.home-lookup-form button {
  grid-column: 1 / -1;
  width: 100%;
}
.home-lookup-form input { min-width: 0; height: 52px; padding: 0 15px; border: 1px solid #b9c9d1; border-radius: 4px; color: #0b2638; font: 720 16px var(--portal-font); letter-spacing: .035em; text-transform: uppercase; }
.home-lookup-form input:focus { border-color: #2383b2; outline: 3px solid rgba(35, 131, 178, .13); }
.home-lookup-form button { min-height: 52px; padding: 0 20px; border: 0; border-radius: 4px; color: #fff; background: #17658d; font: 750 14px var(--portal-font); cursor: pointer; }
.home-lookup-note { display: flex; gap: 9px; margin: 14px 0 0; color: #71838d; font-size: 12px; line-height: 1.5; }

/* Administration */
.admin-header { color: #fff; background: var(--portal-navy-950); }
.admin-header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.portal-brand-admin { color: #fff !important; }
.portal-brand-admin small { color: #b6c6cf; }
.admin-nav { display: flex; align-items: center; gap: 20px; font-size: 13px; font-weight: 700; }
.admin-nav a,
.admin-nav button { color: #d7e1e6; text-decoration: none; }
.admin-nav a:hover,
.admin-nav button:hover { color: #fff; }
.admin-nav form { margin: 0; }
.admin-nav button { padding: 0; border: 0; background: none; font: inherit; cursor: pointer; }
.admin-main { min-height: calc(100vh - 150px); padding: 44px 0 72px; }
.admin-page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin-bottom: 26px; }
.admin-page-head h1 { margin: 0; font-size: 34px; letter-spacing: -.035em; }
.admin-page-head p { margin: 7px 0 0; color: var(--portal-slate-600); }
.admin-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.flash { margin-top: 18px; padding: 13px 16px; border: 1px solid; border-radius: 5px; font-size: 14px; }
.flash-success { color: var(--portal-green); border-color: #a9d8c2; background: #edf9f3; }
.flash-error { color: var(--portal-red); border-color: #e6b4b4; background: #fff0f0; }
.admin-panel { overflow: hidden; border: 1px solid var(--portal-slate-200); border-radius: 8px; background: #fff; box-shadow: 0 8px 28px rgba(7, 27, 42, .05); }
.admin-panel + .admin-panel { margin-top: 22px; }
.admin-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; border-bottom: 1px solid var(--portal-slate-200); background: #f9fbfc; }
.admin-panel-head h2 { margin: 0; font-size: 18px; }
.admin-panel-head p { margin: 5px 0 0; color: var(--portal-slate-600); font-size: 13px; }
.admin-panel-body { padding: 24px; }
.admin-search { display: flex; gap: 8px; margin-bottom: 18px; }
.admin-search input { width: min(420px, 100%); height: 42px; padding: 0 12px; border: 1px solid #bdcbd2; border-radius: 5px; font: 14px var(--portal-font); }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 12px 14px; color: var(--portal-slate-600); background: #f6f9fa; font-size: 11px; letter-spacing: .06em; text-align: left; text-transform: uppercase; }
.admin-table td { padding: 15px 14px; border-top: 1px solid var(--portal-slate-100); font-size: 14px; vertical-align: middle; }
.admin-table td:first-child { font-weight: 800; white-space: nowrap; }
.table-actions { display: flex; align-items: center; gap: 7px; }
.table-actions form { margin: 0; }
.table-action { padding: 7px 9px; border: 1px solid #c6d2d8; border-radius: 4px; color: var(--portal-navy-900); background: #fff; font: 700 11px var(--portal-font); text-decoration: none; cursor: pointer; white-space: nowrap; }
.table-action:hover { border-color: var(--portal-blue-500); }
.table-action-delete { color: #9c3030; }
.empty-state { padding: 55px 25px; color: var(--portal-slate-600); text-align: center; }
.empty-state strong { display: block; margin-bottom: 7px; color: var(--portal-navy-950); font-size: 17px; }

.admin-form { display: grid; gap: 22px; }
.admin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 19px; }
.admin-field { min-width: 0; }
.admin-field-full { grid-column: 1 / -1; }
.admin-field label { display: block; margin-bottom: 7px; color: var(--portal-slate-700); font-size: 12px; font-weight: 800; }
.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #bac9d1;
  border-radius: 5px;
  color: var(--portal-navy-950);
  background: #fff;
  font: 14px/1.45 var(--portal-font);
}
.admin-field textarea { min-height: 112px; resize: vertical; }
.visibility-select { margin-top: 7px; background: #f7fafb !important; }
.field-help { margin: 6px 0 0; color: var(--portal-slate-600); font-size: 11px; line-height: 1.45; }
.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.repeater { display: grid; gap: 14px; }
.repeater-item { position: relative; padding: 18px; border: 1px solid var(--portal-slate-200); border-radius: 6px; background: #fbfcfd; }
.repeater-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 12px; }
.repeater-grid .admin-field-full { grid-column: 1 / -1; }
.remove-row { position: absolute; top: 10px; right: 10px; padding: 5px 8px; border: 1px solid #e0b4b4; border-radius: 4px; color: #983535; background: #fff; font: 700 11px var(--portal-font); cursor: pointer; }
.add-row { margin-top: 14px; }
.form-errors { padding: 15px 18px; border: 1px solid #e5b5b5; border-left: 4px solid var(--portal-red); border-radius: 5px; color: #832e2e; background: #fff1f1; }
.form-errors strong { display: block; margin-bottom: 6px; }
.form-errors ul { margin: 0; padding-left: 19px; }
.admin-submit-bar { position: sticky; z-index: 3; bottom: 0; display: flex; justify-content: flex-end; gap: 9px; padding: 16px 24px; border: 1px solid var(--portal-slate-200); border-radius: 7px; background: rgba(255,255,255,.96); box-shadow: 0 -8px 24px rgba(7, 27, 42, .06); backdrop-filter: blur(10px); }
.preview-frame { padding: 28px 0 55px; background: #e9eff2; }
.preview-banner { width: min(920px, calc(100% - 40px)); margin: 0 auto 16px; padding: 12px 15px; border-radius: 5px; color: #5d4b22; background: #fff4c9; font-size: 13px; }
.admin-footer { padding: 24px 0; color: #8fa1ab; background: var(--portal-navy-950); font-size: 12px; }

.login-shell { min-height: calc(100vh - 76px); display: grid; place-items: center; padding: 45px 20px; }
.login-card { width: min(440px, 100%); padding: 34px; border: 1px solid var(--portal-slate-200); border-top: 4px solid var(--portal-blue-500); border-radius: 8px; background: #fff; box-shadow: var(--portal-shadow); }
.login-card h1 { margin: 0; font-size: 28px; }
.login-card > p { margin: 8px 0 25px; color: var(--portal-slate-600); }
.login-card .admin-field + .admin-field { margin-top: 16px; }
.login-card .admin-button { width: 100%; margin-top: 20px; }

/* Installer */
.install-body { min-height: 100vh; padding: 45px 20px; background: linear-gradient(145deg, var(--portal-navy-950), var(--portal-navy-800)); }
.install-shell { width: min(760px, 100%); margin: 0 auto; }
.install-brand { display: flex; justify-content: center; margin-bottom: 22px; color: #fff; }
.install-card { padding: 34px; border-top: 4px solid var(--portal-blue-500); border-radius: 9px; background: #fff; box-shadow: 0 25px 70px rgba(0,0,0,.25); }
.install-card h1 { margin: 0; font-size: 30px; letter-spacing: -.03em; }
.install-intro { margin: 9px 0 25px; color: var(--portal-slate-600); line-height: 1.6; }
.install-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.install-field-full { grid-column: 1 / -1; }
.install-field label { display: block; margin-bottom: 7px; color: var(--portal-slate-700); font-size: 12px; font-weight: 800; }
.install-field input { width: 100%; height: 44px; padding: 0 12px; border: 1px solid #bac9d1; border-radius: 5px; font: 14px var(--portal-font); }
.install-section-title { grid-column: 1 / -1; margin: 10px 0 -3px; padding-top: 18px; border-top: 1px solid var(--portal-slate-200); font-size: 16px; }
.install-note { margin: 20px 0 0; padding: 13px 15px; border-left: 3px solid var(--portal-blue-500); color: var(--portal-slate-600); background: var(--portal-blue-100); font-size: 12px; line-height: 1.55; }
.install-success { color: var(--portal-green); }
.install-code { width: 100%; min-height: 230px; padding: 12px; border: 1px solid var(--portal-slate-200); font: 12px/1.5 ui-monospace, monospace; }

@media (max-width: 800px) {
  .portal-links a:not(.is-active):not(.portal-admin-link) { display: none; }
  .portal-hero { padding-block: 58px 62px; }
  .home-lookup-grid { grid-template-columns: 1fr; gap: 30px; }
  .report-fields,
  .portal-footer-grid { grid-template-columns: 1fr; }
  .report-field:nth-child(odd),
  .report-field:nth-child(even) { padding-inline: 0; border-left: 0; }
  .repeater-grid { grid-template-columns: 1fr; }
  .admin-header-inner { align-items: flex-start; flex-direction: column; padding-block: 15px; }
  .admin-nav { width: 100%; gap: 14px; overflow-x: auto; }
  .admin-main { padding-top: 30px; }
}

@media (max-width: 600px) {
  .portal-container,
  .admin-container { width: min(100% - 28px, 1160px); }
  .portal-utility .portal-container { justify-content: center; }
  .portal-utility span:last-child { display: none; }
  .portal-nav-inner { min-height: 68px; }
  .portal-brand small { display: none; }
  .portal-links { gap: 9px; }
  .portal-admin-link { display: none; }
  .lookup-form,
  .home-lookup-form { grid-template-columns: 1fr; }
  .lookup-panel { padding: 22px; }
  .report-title-row { align-items: flex-start; flex-direction: column; padding: 28px 23px; }
  .report-section { padding: 27px 23px; }
  .report-disclaimer { padding: 22px 23px; }
  .institution-main { align-items: flex-start; flex-direction: column; gap: 10px; }
  .admin-page-head { align-items: flex-start; flex-direction: column; }
  .admin-grid,
  .status-grid,
  .install-grid { grid-template-columns: 1fr; }
  .admin-field-full,
  .install-field-full,
  .install-section-title { grid-column: auto; }
  .admin-panel-body,
  .admin-panel-head { padding-inline: 16px; }
  .admin-submit-bar { justify-content: stretch; flex-direction: column-reverse; }
  .admin-submit-bar .admin-button { width: 100%; }
  .install-card { padding: 25px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Definitivni font override za landing, javnu prijavu i administraciju. */
html body,
html body *,
html body button,
html body input,
html body select,
html body textarea {
  font-family: "Public Sans", Arial, sans-serif !important;
}
