/* src/review/public/style.css — Review-UI (SPEC.md §8)
   Stram, læsbar, mørk-venlig neutral palette. Layout target: 1440×900, ingen scroll i
   detaljepanelet (kun listen til venstre må scrolle). */

:root {
  --bg: #15171b;
  --bg-panel: #1b1e23;
  --bg-tile: #22262c;
  --bg-hover: #262a31;
  --border: #33383f;
  --text: #e6e8eb;
  --text-dim: #9aa1ab;
  --text-faint: #6b7280;
  --accent: #5fb3ff;
  --green: #4ade80;
  --green-bg: rgba(74, 222, 128, 0.12);
  --red: #f87171;
  --red-bg: rgba(248, 113, 113, 0.12);
  --amber: #fbbf24;
  --tier-a: #4ade80;
  --tier-b: #fbbf24;
  --tier-c: #f87171;
  --tier-unknown: #6b7280;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f5f6f8;
    --bg-panel: #ffffff;
    --bg-tile: #eef0f3;
    --bg-hover: #e6e9ee;
    --border: #d7dbe1;
    --text: #1a1d21;
    --text-dim: #565d68;
    --text-faint: #889099;
    --accent: #1c74c9;
  }
}

:root[data-theme="dark"] {
  --bg: #15171b;
  --bg-panel: #1b1e23;
}

:root[data-theme="light"] {
  --bg: #f5f6f8;
  --bg-panel: #ffffff;
  --text: #1a1d21;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 13px;
}

body {
  display: flex;
  flex-direction: column;
}

#app {
  display: grid;
  grid-template-columns: 340px 1fr;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* ------------------------------------------------------------------ */
/* Topnavigation (AO3 Modul A-UI/D-UI — delt af alle autentificerede sider) */
/* ------------------------------------------------------------------ */

#main-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 16px;
  height: 44px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.nav-tabs {
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav-tab {
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--text-dim);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
}

.nav-tab:hover {
  background: var(--bg-hover);
  color: var(--text);
}

.nav-tab.active {
  background: var(--accent);
  color: #06121f;
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
}

.nav-user-role {
  color: var(--text-faint);
}

.nav-logout {
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
}

.nav-logout:hover {
  text-decoration: underline;
}

/* ------------------------------------------------------------------ */
/* Login-side                                                           */
/* ------------------------------------------------------------------ */

.login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.login-card {
  width: 320px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.login-title {
  margin: 0 0 4px;
  font-size: 20px;
  color: var(--accent);
}

.login-sub {
  margin: 0 0 16px;
  color: var(--text-dim);
  font-size: 12.5px;
}

.login-error {
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12px;
  margin-bottom: 12px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-form label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-dim);
}

.login-form input {
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 8px 10px;
  font-size: 13px;
  font-family: inherit;
}

.login-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
}

.login-form button {
  margin-top: 6px;
  background: var(--accent);
  color: #06121f;
  border: none;
  border-radius: 6px;
  padding: 9px 0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.login-form button:hover {
  filter: brightness(1.08);
}

/* ------------------------------------------------------------------ */
/* Sidehoved delt af Kunder/Godkendelser-siderne                       */
/* ------------------------------------------------------------------ */

.page-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin: 0;
  font-size: 17px;
}

.back-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 12.5px;
}

.back-link:hover {
  text-decoration: underline;
}

#kill-switch-btn {
  margin-left: auto;
  background: var(--bg-tile);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
}

#kill-switch-btn:hover {
  background: var(--bg-hover);
}

/* ------------------------------------------------------------------ */
/* Kunde-oversigt                                                       */
/* ------------------------------------------------------------------ */

#kunder-table-wrap {
  padding: 16px 20px;
  overflow-x: auto;
}

#kunder-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}

#kunder-table th {
  text-align: left;
  padding: 8px 10px;
  color: var(--text-faint);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
}

#kunder-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--border);
}

#kunder-table a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

#kunder-table a:hover {
  text-decoration: underline;
}

#kunder-empty,
#kpi-empty,
#alerts-empty,
#tasks-empty,
#godkend-empty {
  color: var(--text-faint);
  padding: 20px;
  text-align: center;
  font-size: 12.5px;
}

.badge-paused { color: var(--amber); border-color: var(--amber); background: rgba(251, 191, 36, 0.1); }
.badge-active { color: var(--green); border-color: var(--green); background: var(--green-bg); }
.badge-alert { color: var(--red); border-color: var(--red); background: var(--red-bg); }

.access-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 10px;
  margin-right: 2px;
}

.access-ok { background: var(--green-bg); color: var(--green); }
.access-pending { background: rgba(251, 191, 36, 0.15); color: var(--amber); }
.access-missing { background: var(--red-bg); color: var(--red); }

/* ------------------------------------------------------------------ */
/* Kundedetalje                                                         */
/* ------------------------------------------------------------------ */

#kunde-detail-page {
  padding-bottom: 20px;
}

.detail-section {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.detail-section h2 {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

#kpi-table,
#access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}

#kpi-table th,
#access-table th {
  text-align: left;
  padding: 6px 8px;
  color: var(--text-faint);
  font-size: 10.5px;
  border-bottom: 1px solid var(--border);
}

#kpi-table td,
#access-table td {
  padding: 7px 8px;
  border-bottom: 1px solid var(--border);
}

.dim {
  color: var(--text-faint);
  font-size: 11px;
}

.alerts-list,
.tasks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-tile);
  font-size: 12px;
}

.alert-item.alert-critical { border-color: var(--red); }
.alert-item.alert-warning { border-color: var(--amber); }

.alert-severity {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10.5px;
}

.alert-message { flex: 1; }
.alert-date { color: var(--text-faint); font-size: 11px; }

.alert-item button {
  background: var(--bg-hover);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 11px;
  cursor: pointer;
}

#tasks-controls {
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-dim);
}

#tasks-controls select {
  background: var(--bg-tile);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 5px;
  padding: 3px 6px;
  margin-left: 6px;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-tile);
  font-size: 12px;
}

.task-title { flex: 1; }
.task-type { color: var(--text-dim); }
.task-hours { color: var(--text-faint); }

.task-state {
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10.5px;
  font-weight: 700;
  background: var(--bg-hover);
  color: var(--text-dim);
}

.task-state-awaiting_approval { color: var(--amber); }
.task-state-approved,
.task-state-done { color: var(--green); }
.task-state-failed,
.task-state-blocked_dev,
.task-state-blocked_access { color: var(--red); }

#kunde-status-line {
  padding: 10px 20px;
  font-size: 11.5px;
  color: var(--text-dim);
}

/* ------------------------------------------------------------------ */
/* Godkendelseskø (AO3 §7)                                              */
/* ------------------------------------------------------------------ */

#godkend-page {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

#godkend-count {
  margin-left: auto;
  color: var(--text-dim);
  font-size: 12px;
}

#godkend-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 20px;
}

#godkend-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
}

.godkend-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}

.godkend-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.godkend-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.godkend-title {
  font-weight: 700;
  font-size: 13.5px;
}

.godkend-meta {
  color: var(--text-dim);
  font-size: 11.5px;
  white-space: nowrap;
}

.godkend-effect {
  color: var(--text-dim);
  font-size: 12px;
  margin-bottom: 10px;
}

.godkend-section {
  margin-bottom: 10px;
}

.diff-field {
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 6px;
}

.diff-field-name {
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.diff-text {
  font-size: 12.5px;
  line-height: 1.5;
  font-family: ui-monospace, Menlo, monospace;
}

.diff-add {
  background: var(--green-bg);
  color: var(--green);
  text-decoration: none;
}

.diff-del {
  background: var(--red-bg);
  color: var(--red);
  text-decoration: line-through;
}

.diff-same {
  color: var(--text-dim);
}

.verify-json {
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  overflow-x: auto;
  margin: 0;
}

.godkend-actions {
  display: flex;
  gap: 8px;
}

.btn-approve {
  background: var(--green);
  color: #06210f;
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

.btn-reject {
  background: var(--bg-tile);
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

.godkend-reject-note {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.reject-note-input {
  flex: 1;
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 6px 8px;
  font-family: inherit;
  font-size: 12px;
  resize: vertical;
  min-height: 40px;
}

.btn-reject-confirm {
  background: var(--red);
  color: #200606;
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
}

#godkend-status-line {
  flex-shrink: 0;
  padding: 8px 20px;
  font-size: 11.5px;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
}

/* ------------------------------------------------------------------ */
/* Venstre kolonne — liste                                             */
/* ------------------------------------------------------------------ */

#list-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-right: 1px solid var(--border);
  background: var(--bg-panel);
}

#list-controls {
  flex-shrink: 0;
  padding: 12px 12px 8px;
  border-bottom: 1px solid var(--border);
}

#tier-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.tier-tab {
  flex: 1;
  padding: 6px 0;
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.tier-tab:hover {
  background: var(--bg-hover);
}

.tier-tab[aria-selected="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: #06121f;
}

#undecided-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 12px;
  cursor: pointer;
  user-select: none;
}

#site-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.site-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.site-row:hover {
  background: var(--bg-hover);
}

.site-row.selected {
  background: var(--bg-hover);
  box-shadow: inset 3px 0 0 var(--accent);
}

.site-domain {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
}

.site-score {
  font-variant-numeric: tabular-nums;
  color: var(--text-dim);
  font-size: 12px;
  min-width: 28px;
  text-align: right;
}

.site-icons {
  display: flex;
  gap: 3px;
  font-size: 12px;
  min-width: 40px;
}

.icon-gate { color: var(--amber); }
.icon-kill { color: var(--red); }
.icon-decided { color: var(--green); }

/* ------------------------------------------------------------------ */
/* Tier-badge (delt mellem liste og detaljepanel)                     */
/* ------------------------------------------------------------------ */

.tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #0a0d10;
}

.tier-badge.tier-a { background: var(--tier-a); }
.tier-badge.tier-b { background: var(--tier-b); }
.tier-badge.tier-c { background: var(--tier-c); }
.tier-badge.tier-unknown { background: var(--tier-unknown); color: var(--text); }

/* ------------------------------------------------------------------ */
/* Højre kolonne — detaljepanel                                        */
/* ------------------------------------------------------------------ */

#detail-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 14px 20px 10px;
}

#detail-empty {
  margin: auto;
  color: var(--text-faint);
  font-size: 14px;
}

#detail-content {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

#detail-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

#detail-domain-link {
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

#detail-domain-link:hover {
  text-decoration: underline;
}

#detail-badges {
  display: flex;
  gap: 6px;
  align-items: center;
}

#detail-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.panel-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  margin-bottom: 4px;
}

/* --- Visual: mshots + sparkline ------------------------------------- */

#detail-visual {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  height: 150px;
}

#mshots-wrap {
  position: relative;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-tile);
  border: 1px solid var(--border);
}

#mshots-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

#mshots-status {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10.5px;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.45);
  padding: 2px 0;
}

#sparkline-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#sparkline {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
}

.sparkline-svg {
  width: 100%;
  height: 100%;
}

.sparkline-empty {
  color: var(--text-faint);
  font-size: 12px;
}

/* --- Nøgletal-grid ---------------------------------------------------- */

#key-figures {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
}

.figure-tile {
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 6px;
  text-align: center;
}

.figure-label {
  font-size: 9.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.figure-value {
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}

/* --- Reasons + gates/kill ---------------------------------------------- */

#reasons {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.reasons-col {
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  overflow-y: auto;
  min-height: 0;
}

.reasons-label-up { color: var(--green); }
.reasons-label-down { color: var(--red); }

.reasons-col ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reasons-col li {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 11.5px;
  padding: 3px 6px;
  border-radius: 4px;
}

#reasons-up li {
  background: var(--green-bg);
}

#reasons-down li {
  background: var(--red-bg);
}

.reason-field {
  font-weight: 700;
  white-space: nowrap;
}

.reason-raw {
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reason-contribution {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.reasons-empty {
  color: var(--text-faint);
}

#gates-kill {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--border);
}

.badge-gate {
  color: var(--amber);
  border-color: var(--amber);
  background: rgba(251, 191, 36, 0.1);
}

.badge-kill {
  color: var(--red);
  border-color: var(--red);
  background: var(--red-bg);
}

.badge-decided {
  color: var(--green);
  border-color: var(--green);
  background: var(--green-bg);
}

.badge-undecided {
  color: var(--text-dim);
}

.badges-empty {
  color: var(--text-faint);
  font-size: 11px;
}

/* --- Note + statuslinje -------------------------------------------------- */

#note-area {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

#note-area label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  margin-bottom: 3px;
}

#note-textarea {
  resize: none;
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  padding: 6px 8px;
  font-family: inherit;
  font-size: 12px;
  height: 54px;
}

#note-textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
}

#status-line {
  flex-shrink: 0;
  font-size: 11.5px;
  color: var(--text-dim);
  padding: 5px 8px;
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------ */
/* Hjælpe-overlay                                                       */
/* ------------------------------------------------------------------ */

#help-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#help-box {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 26px;
  min-width: 320px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

#help-box h2 {
  margin: 0 0 12px;
  font-size: 15px;
}

#help-box ul {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
}

#help-box p {
  color: var(--text-dim);
  font-size: 11.5px;
  margin: 0;
}

kbd {
  background: var(--bg-tile);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
}

/* Elementer der styres via JS'ens hidden-attribut (#detail-content, #detail-empty,
   #help-overlay) sætter selv en display-værdi (flex/grid) andetsteds i denne fil —
   den regel har højere specificitet end browserens standard-[hidden]-regel og ville
   ellers vise elementet selvom hidden er sat. Denne regel skal derfor stå sidst. */
[hidden] {
  display: none !important;
}
