/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #00A550;
  --green-dark:   #008A42;
  --green-light:  #E8F7EF;
  --sidebar-bg:   #1B2631;
  --sidebar-text: #A8B5C3;
  --sidebar-active-bg: rgba(0,165,80,.15);
  --sidebar-active-text: #00A550;
  --bg:           #F4F6F8;
  --white:        #FFFFFF;
  --border:       #E2E8F0;
  --text:         #1A202C;
  --text-muted:   #718096;
  --red:          #E53E3E;
  --red-light:    #FFF5F5;
  --yellow:       #D69E2E;
  --yellow-light: #FFFFF0;
  --radius:       8px;
  --shadow:       0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:    0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --sidebar-width: 220px;
  --topbar-h:     56px;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.layout {
  display: flex;
  min-height: 100vh;
}

/* ── Sidebar ── */
.sidebar {
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform .2s ease;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.sidebar-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.3px;
}

.sidebar-nav {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
}

.nav-section {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(168,181,195,.5);
  padding: 16px 20px 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 0;
  transition: background .15s, color .15s;
  cursor: pointer;
}

.nav-item:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}

.nav-item.active {
  background: var(--sidebar-active-bg);
  color: var(--sidebar-active-text);
  border-right: 2px solid var(--green);
}

.nav-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 8px 0;
}

.nav-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  background: rgba(0,165,80,.25);
  color: #4ade80;
  letter-spacing: .3px;
}

.sidebar-footer {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ── Main wrapper ── */
.main-wrapper {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Topbar ── */
.topbar {
  height: var(--topbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-left { display: flex; align-items: center; gap: 14px; }

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  border-radius: 4px;
}

.topbar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.topbar-avatar {
  width: 32px; height: 32px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.topbar-avatar:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ── Användar-dropdown i topbar ── */
.topbar-user {
  position: relative;
}
.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  z-index: 100;
}
.user-dropdown[hidden] { display: none; }
.user-dropdown-namn {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 2px;
  word-break: break-word;
}
.user-dropdown-epost {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  word-break: break-all;
}
.user-dropdown-byt-foretag {
  display: block;
  width: 100%;
  text-align: left;
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
  padding: 6px 0;
  margin-top: 4px;
  cursor: pointer;
  border-radius: 4px;
}
.user-dropdown-byt-foretag:hover {
  color: var(--accent, #16a34a);
}
.user-dropdown-byt-foretag[hidden] { display: none; }
.user-dropdown .nav-divider {
  margin: 8px -16px;
}
.user-dropdown-loggaut {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  padding: 6px 0;
  cursor: pointer;
  border-radius: 4px;
}
.user-dropdown-loggaut:hover {
  color: #c00;
}

/* ── Topbar-right wrapper: lay ut klock + avatar sida vid sida ── */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Notifikations-klocka i topbar (steg 2B.2) ── */
.topbar-notis {
  position: relative;
}
.topbar-notis-btn {
  position: relative;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--text-muted, #6b7280);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.topbar-notis-btn:hover {
  background: var(--bg-muted, #f9fafb);
  color: var(--text, #111827);
}
.topbar-notis-btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.notis-icon {
  width: 20px;
  height: 20px;
}
.notis-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #dc2626;
  color: white;
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
  line-height: 14px;
}
.notis-badge[hidden] { display: none; }

.notis-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 100;
  padding: 4px 0;
  overflow: hidden;
}
.notis-dropdown[hidden] { display: none; }

.notis-tom, .notis-loading, .notis-error {
  padding: 20px 16px;
  color: var(--text-muted, #6b7280);
  text-align: center;
  font-size: 14px;
}

.notis-rad {
  display: block;
  padding: 12px 16px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
}
.notis-rad:last-child { border-bottom: none; }
.notis-rad:hover { background: #f9fafb; }
.notis-rad-titel {
  font-size: 14px;
  color: var(--text, #111827);
}
.notis-rad-tid {
  font-size: 12px;
  color: var(--text-muted, #6b7280);
  margin-top: 4px;
}

/* ── RECEIPTS — Konsult-review-UI (steg 3) ── */
.upload-payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-muted, #f9fafb);
  border-radius: 6px;
  margin-bottom: 12px;
}
.upload-payment-method label {
  font-weight: 500;
  font-size: 13px;
}
.upload-payment-method select {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
}

.receipt-edit-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.receipt-edit-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.receipt-edit-form .form-group > span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.receipt-edit-form input,
.receipt-edit-form select,
.receipt-edit-form textarea {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
}
.receipt-edit-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.receipt-soft-warnings {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: #92400e;
}
.receipt-soft-warnings strong {
  display: block;
  margin-bottom: 4px;
}
.receipt-soft-warnings ul {
  margin: 0;
  padding-left: 20px;
}

.receipt-action-status {
  min-height: 0;
}
.receipt-action-status .alert {
  white-space: pre-line;
}

.receipt-action-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
}

.receipt-ai-terminal {
  padding: 16px;
}

.btn-danger {
  background: var(--red, #dc2626);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}
.btn-danger:hover {
  background: #b91c1c;
}

.form-help {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 0;
}

/* ── RECEIPTS — Filter-rad (status + datum) ── */
.filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: wrap;          /* yttre wrap kvar för smal viewport */
}
.filter-status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;          /* chips får wrap (8+ chips behöver radbryta på smala fönster) */
}
.filter-datum {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;        /* label + dropdown + inputs på samma rad */
  min-width: max-content;   /* förhindra krympning som triggar wrap-fallback */
}
.filter-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.filter-chip {
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.filter-chip:hover {
  background: var(--bg-muted, #f9fafb);
}
.filter-chip-active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.filter-chip-active:hover {
  background: var(--green-dark, var(--green));
}
.filter-datum-input {
  width: 140px;
  font-size: 13px;
}
.filter-datum select {
  font-size: 13px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
}

/* ── RECEIPTS — Bulk-bokföring (mass-godkann + bokför) ── */
.receipts-checkbox-col {
  width: 36px;
  text-align: center;
}
.bulk-checkbox {
  cursor: pointer;
}
.bulk-action-bar {
  position: sticky;
  bottom: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
.bulk-action-count {
  font-size: 14px;
  color: var(--text-muted);
}
.bulk-result-rapport {
  padding: 16px;
  background: var(--bg-muted, #f9fafb);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 16px 0;
}
.bulk-result-rapport h3 {
  font-size: 16px;
  font-weight: 600;
}
.text-success { color: var(--green); }
.text-error   { color: var(--red, #dc2626); }

/* ── Main content ── */
.main-content {
  flex: 1;
  padding: 28px 32px;
}

/* ── Page header ── */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.page-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.page-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.card-body { padding: 20px; }

/* ── Stat cards (dashboard) ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.5px;
}

.stat-value.green  { color: var(--green); }
.stat-value.red    { color: var(--red); }

/* ── Tables ── */
.table-wrapper {
  overflow-x: auto;
}

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

thead th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 16px;
  text-align: left;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .1s;
}

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

tbody tr:hover { background: #F7FAFC; }

tbody td {
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--text);
}

.td-muted { color: var(--text-muted); font-size: 12.5px; }

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
}

.badge-green  { background: var(--green-light);  color: var(--green-dark); }
.badge-yellow { background: var(--yellow-light); color: var(--yellow); }
.badge-red    { background: var(--red-light);    color: var(--red); }
.badge-gray   { background: #EDF2F7;             color: #4A5568; }
.badge-blue   { background: #EBF4FF;             color: #2B6CB0; }
.badge-orange { background: #FFF7ED;             color: #C2410C; }
.badge-teal   { background: #F0FDFA;             color: #0F766E; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s, box-shadow .15s;
  text-decoration: none;
}

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

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--bg); }

.btn-danger {
  background: var(--white);
  color: var(--red);
  border-color: #FED7D7;
}
.btn-danger:hover { background: var(--red-light); }

.btn-sm { padding: 5px 12px; font-size: 12.5px; }
.btn-icon { padding: 6px; }

/* Discrete länk-stilad knapp/anchor. Används för:
   - "Tillbaka till X"-länkar (muted via inline color)
   - "Öppna X →"-deeplinks i text
   - Sekundära åtgärder där en full btn-secondary vore för tung
   Reset av button-defaults så <button class="btn-link"> ser identisk
   ut med <a class="btn-link"> (samma anti-mönster fixat 5 gånger
   case-by-case: PR #197, #202, #206, #207, #212). */
.btn-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--green);
  cursor: pointer;
  text-decoration: none;
}
.btn-link:hover {
  text-decoration: underline;
}
.btn-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Forms ── */
.form-group { margin-bottom: 16px; }

label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 5px;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13.5px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,165,80,.12);
}

textarea { resize: vertical; min-height: 80px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn .15s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(.96) translateY(-8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.modal-title { font-size: 15px; font-weight: 600; }

.modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 4px;
  border-radius: 4px; font-size: 18px; line-height: 1;
  transition: color .15s;
}
.modal-close:hover { color: var(--text); }

.modal-body { padding: 20px; }
.modal-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 10px;
}

/* ── Verifikat-rader ── */
.ver-rader { width: 100%; border-collapse: collapse; margin-top: 8px; }
.ver-rader th {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .5px; color: var(--text-muted);
  padding: 6px 8px; text-align: left;
}
.ver-rader td { padding: 4px 4px; }
.ver-rader td input { padding: 6px 8px; font-size: 13px; }
.ver-rader td:last-child { width: 36px; text-align: center; }

/* ── Empty state ── */
.empty-state {
  text-align: center; padding: 60px 20px; color: var(--text-muted);
}
.empty-state svg { width: 48px; height: 48px; opacity: .3; margin-bottom: 12px; }
.empty-state p { font-size: 14px; }

/* ── Loading ── */
.loading-spinner {
  display: flex; align-items: center; justify-content: center;
  padding: 60px;
}
.loading-spinner::after {
  content: '';
  width: 28px; height: 28px;
  border: 3px solid var(--border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

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

/* ── Alert ── */
.alert {
  padding: 12px 16px; border-radius: 6px; font-size: 13.5px;
  margin-bottom: 16px; display: flex; align-items: flex-start; gap: 10px;
}
.alert-error  { background: var(--red-light);    color: var(--red);    border: 1px solid #FEB2B2; }
.alert-success{ background: var(--green-light);  color: var(--green-dark); border: 1px solid #9AE6B4; }
.alert-info   { background: #EBF8FF; color: #2B6CB0; border: 1px solid #BEE3F8; }

/* ── Tabs ── */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.tab-btn {
  padding: 10px 18px; font-size: 13.5px; font-weight: 500;
  color: var(--text-muted); background: none; border: none;
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .15s, border-color .15s;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }

/* ── Utility ── */
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.font-mono { font-family: 'SF Mono', 'Fira Code', monospace; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.w-full { width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

/* ── Nav-group (kollapsbar sektion i sidebar) ── */
.nav-group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  color: var(--sidebar-text);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: background .15s, color .15s;
}
.nav-group-header:hover { background: rgba(255,255,255,.06); color: #fff; }

.nav-group-chevron {
  margin-left: auto;
  width: 14px; height: 14px;
  transition: transform .2s ease;
  opacity: .5;
}
.nav-group.open .nav-group-chevron { transform: rotate(90deg); }

.nav-group-items {
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}
.nav-group.open .nav-group-items { max-height: 400px; }

.nav-group-items .nav-item {
  padding-left: 36px;
  font-size: 13px;
}

/* ── Register modaler ── */
.reg-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 300;
  padding: 20px;
}

.reg-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn .15s ease;
}

.reg-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.reg-modal-title { font-size: 15px; font-weight: 600; }
.reg-modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 20px; line-height: 1;
  padding: 2px 6px; border-radius: 4px;
}
.reg-modal-close:hover { color: var(--text); background: var(--bg); }

.reg-modal-body { padding: 20px; }
.reg-modal-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end; gap: 10px;
}

/* ── Register sökning/filter ── */
.reg-toolbar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.reg-search {
  flex: 1;
  max-width: 320px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13.5px;
  font-family: var(--font);
  outline: none;
}
.reg-search:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,165,80,.12); }

/* ── Moms ── */
.moms-hero {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #f3f4f6;
  transition: background 0.3s ease;
}
.moms-hero[data-status="att-betala"] {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #991b1b;
}
.moms-hero[data-status="att-fa-tillbaka"] {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #166534;
}
.moms-hero[data-status="noll"] {
  background: #f3f4f6;
  color: var(--text-muted);
}
.moms-hero-belopp {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.moms-hero-status {
  font-size: 16px;
  margin-top: 8px;
  opacity: 0.85;
  font-weight: 500;
}
.moms-hero-period {
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.7;
}
.moms-period-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.moms-meta-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.moms-meta-value {
  font-weight: 500;
}
.moms-box-group {
  margin-bottom: 20px;
}
.moms-box-group-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.moms-box-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.moms-box-table td {
  padding: 5px 4px;
}
.moms-box-nr {
  width: 36px;
  color: var(--text-muted);
}
.moms-total-row td {
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 8px;
}
.moms-historik-row:hover td {
  background: var(--bg);
}

/* Period-väljare */
.moms-period-valjare {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.moms-period-select {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 14px;
  font-family: var(--font);
  background: var(--white);
  cursor: pointer;
}
.moms-period-select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,165,80,.12); }

/* Deklarerad-banner */
.moms-deklarerad-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  font-size: 13.5px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* Textknapp */
.btn-text {
  background: none;
  border: none;
  color: var(--green);
  cursor: pointer;
  font-size: 13px;
  padding: 0;
  text-decoration: underline;
  font-family: var(--font);
}

/* SKV-grupp-färger */
.moms-box-group.group-sales      { border-left: 3px solid #10b981; padding-left: 10px; }
.moms-box-group.group-output-tax { border-left: 3px solid #f59e0b; padding-left: 10px; }
.moms-box-group.group-purchases  { border-left: 3px solid #3b82f6; padding-left: 10px; }
.moms-box-group.group-input-tax  { border-left: 3px solid #e97bf1; padding-left: 10px; }
.moms-box-group.group-summary    { border-left: 3px solid #6366f1; padding-left: 10px; }


/* ── Responsive ── */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-wrapper {
    margin-left: 0;
  }
  .menu-btn { display: flex; }
  .main-content { padding: 16px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Moms: Inställningar (flik 3) ── */
.moms-installningar-section { max-width: 640px; }

.moms-installningar-rubrik {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

.moms-installningar-info {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 20px;
}

.moms-frequency-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.moms-frequency-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.moms-frequency-option:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.moms-frequency-option.is-active {
  border-color: var(--green);
  background: var(--green-light);
}

.moms-frequency-option input[type="radio"] {
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--green);
}

.moms-frequency-text { flex: 1; }

.moms-frequency-titel {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 4px;
}

.moms-frequency-rec {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.moms-frequency-beskr {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.moms-installningar-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.moms-installningar-status { font-size: 14px; }
.moms-installningar-status.is-success { color: #166534; }
.moms-installningar-status.is-error   { color: #991b1b; }

/* ── Moms-widget på dashboard ── */
.card-link {
  font-size: 13px;
  color: var(--text-muted);
}

.moms-widget-rad {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.moms-widget-rad:has(.moms-widget-varning) {
  grid-template-columns: 2fr 1fr;
}

.moms-widget-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-left: 4px solid var(--green);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.moms-widget-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.moms-widget-card.is-urgent {
  border-left-color: #f59e0b;
  background: linear-gradient(to right, #fffbeb 0%, transparent 30%);
}

.moms-widget-card.is-overdue {
  border-left-color: var(--red);
  background: linear-gradient(to right, var(--red-light) 0%, transparent 30%);
}

.moms-widget-period {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.moms-widget-deadline {
  color: var(--text-muted);
  font-size: 14px;
}

.moms-widget-deadline strong { color: var(--text); }
.moms-widget-card.is-urgent  .moms-widget-deadline strong { color: #92400e; }
.moms-widget-card.is-overdue .moms-widget-deadline strong { color: #991b1b; }

.moms-widget-status-ok {
  font-size: 16px;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.moms-widget-info-text {
  color: var(--text-muted);
  font-size: 13px;
}

.moms-widget-varning {
  display: block;
  text-decoration: none;
  color: inherit;
  border-left: 4px solid #f59e0b;
  background: linear-gradient(to right, #fffbeb 0%, transparent 50%);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.moms-widget-varning:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.moms-widget-varning-titel {
  font-weight: 600;
  font-size: 15px;
  color: #92400e;
  margin-bottom: 4px;
}

.moms-widget-varning-text {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .moms-widget-rad,
  .moms-widget-rad:has(.moms-widget-varning) {
    grid-template-columns: 1fr;
  }
}

/* ── Anställda-lista ── */
.anstallda-table {
  width: 100%;
  border-collapse: collapse;
}
.anstallda-table th,
.anstallda-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border, #e5e7eb);
}
.anstallda-table th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #6b7280);
  background: var(--bg-subtle, #f9fafb);
}
.anstallda-row:hover {
  background: var(--bg-subtle, #f9fafb);
}
.anstallda-col-nr {
  width: 80px;
  color: var(--text-muted, #6b7280);
}
.anstallda-col-lon {
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .anstallda-table th:nth-child(4),
  .anstallda-table th:nth-child(5),
  .anstallda-table td:nth-child(4),
  .anstallda-table td:nth-child(5) {
    display: none;
  }
}

/* ── Anställda-formulär ── */
.anstallda-form { max-width: 900px; }

.form-section {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  margin-bottom: 16px;
}
.form-section-header {
  padding: 12px 16px;
  background: var(--bg-subtle, #f9fafb);
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  user-select: none;
  width: 100%;
}
.form-section-toggle { display: inline-block; transition: transform 0.15s; }
.form-section.collapsed .form-section-toggle { transform: rotate(-90deg); }
.form-section.collapsed .form-section-body   { display: none; }
.form-section-body { padding: 16px; }

.form-row { margin-bottom: 12px; }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-primary, #111827);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border, #d1d5db);
  border-radius: 6px;
  font-size: 14px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent, #2563eb);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-hint    { display: block; margin-top: 4px; font-size: 12px; color: var(--text-muted, #6b7280); }
.field-error  { margin-top: 4px; font-size: 13px; color: var(--danger, #dc2626); min-height: 18px; }
.field-warning {
  margin-top: 8px;
  padding: 8px 12px;
  background: #fef3c7;
  border-left: 3px solid #f59e0b;
  border-radius: 4px;
  font-size: 13px;
  color: #92400e;
}
.form-checkbox { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.form-checkbox input { width: auto; }

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border, #e5e7eb);
}

@media (max-width: 768px) {
  .form-row-2col,
  .form-row-3col { grid-template-columns: 1fr; }
}

/* ── Toast ───────────────────────────────────────────────────────────────── */

#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: auto;
}

.toast-visible { opacity: 1; transform: translateY(0); }
.toast-success { background: #16a34a; color: #fff; }
.toast-error   { background: #dc2626; color: #fff; }
.toast-info    { background: #2563eb; color: #fff; }

/* ── Audit log ───────────────────────────────────────────────────────────── */

.audit-log {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audit-entry {
  background: var(--card-bg, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  padding: 16px;
}

.audit-entry-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  flex-wrap: wrap;
}

.audit-action {
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.audit-action-create { background: #dcfce7; color: #15803d; }
.audit-action-update { background: #dbeafe; color: #1d4ed8; }
.audit-action-delete { background: #fee2e2; color: #dc2626; }

.audit-date { color: var(--text-muted, #6b7280); }
.audit-user { color: var(--text-muted, #6b7280); font-style: italic; }

.audit-changes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.audit-changes-table th {
  text-align: left;
  padding: 6px 10px;
  background: var(--bg-muted, #f9fafb);
  border-bottom: 1px solid var(--border, #e5e7eb);
  font-weight: 500;
  color: var(--text-muted, #6b7280);
}
.audit-changes-table td {
  padding: 6px 10px;
  border-bottom: 1px solid var(--border-light, #f3f4f6);
  vertical-align: top;
}
.audit-field { font-weight: 500; }
.audit-old   { color: #dc2626; text-decoration: line-through; opacity: .75; }
.audit-new   { color: #16a34a; }

/* btn-ghost variant */
.btn-ghost {
  background: transparent;
  color: var(--text-muted, #6b7280);
  border: 1px solid var(--border, #e5e7eb);
}
.btn-ghost:hover { background: var(--bg-muted, #f9fafb); color: var(--text, #111827); }


/* L4.1b — Reseräkning UI */
.radio-label,
.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.radio-label input,
.checkbox-label input {
  margin: 0;
}
.filter-select {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-size: 13px;
}


/* ── RECEIPTS-modul (steg 2B.1) ─────────────────────────────────────────────── */

.status-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}
.status-inkommit               { background: #e5e7eb; color: #374151; }
.status-aiTolkar               { background: #dbeafe; color: #1e40af; animation: receipts-pulse 1.5s infinite; }
.status-aiTolkat               { background: #fef3c7; color: #92400e; }
.status-aiTolkningMisslyckades { background: #fee2e2; color: #991b1b; }
.status-klientKommenterat      { background: #fef9c3; color: #854d0e; }
.status-godkant                { background: #d1fae5; color: #065f46; }
.status-bokfort                { background: #34d399; color: #064e3b; }
.status-avvisat                { background: #9ca3af; color: #1f2937; }

@keyframes receipts-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}

.confidence-hög,
.confidence-medium,
.confidence-låg {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.confidence-hög    { background: #d1fae5; color: #065f46; }
.confidence-medium { background: #fef3c7; color: #92400e; }
.confidence-låg    { background: #fee2e2; color: #991b1b; }

/* Upload-zon */
.receipts-upload-zone {
  margin: 16px 0 24px;
  padding: 16px;
  background: var(--bg-soft, #f9fafb);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.receipts-upload-zone[hidden] { display: none; }

.receipts-upload-target {
  padding: 32px 16px;
  border: 2px dashed var(--border, #d1d5db);
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: background 0.1s, border-color 0.1s;
}
.receipts-upload-target:hover,
.receipts-upload-target.drag-over {
  background: #eff6ff;
  border-color: #3b82f6;
}
.receipts-upload-target p { margin: 0; }

#upload-progress {
  margin-top: 12px;
}

.upload-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 4px;
  background: var(--white, #fff);
  margin-bottom: 4px;
  border: 1px solid var(--border);
}
.upload-item.success { background: #f0fdf4; border-color: #86efac; }
.upload-item.error   { background: #fef2f2; border-color: #fecaca; }
.upload-icon { font-weight: bold; min-width: 16px; text-align: center; }
.upload-name { flex: 1; font-family: monospace; font-size: 12px; }
.upload-msg  { font-size: 12px; color: var(--text-muted); }
.upload-item.success .upload-msg { color: #16a34a; }
.upload-item.error   .upload-msg { color: #dc2626; }

/* Tabell-rader klickbara */
.receipts-row {
  cursor: pointer;
  transition: background 0.1s;
}
.receipts-row:hover {
  background: var(--bg-soft, #f9fafb);
}

/* Detalj-vy: grid med bild + data */
.receipt-detalj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .receipt-detalj-grid { grid-template-columns: 1fr; }
}

.receipt-detalj-file {
  background: var(--bg-soft, #f9fafb);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--border);
}
.receipt-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.receipt-pdf-iframe {
  width: 100%;
  height: 75vh;
  border: none;
}

.receipt-detalj-data {
  background: var(--white, #fff);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.receipt-ai-data {
  display: grid;
  grid-template-columns: minmax(120px, 30%) 1fr;
  gap: 8px 16px;
  margin: 0;
}
.receipt-ai-data dt {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  align-self: start;
  padding-top: 2px;
}
.receipt-ai-data dd {
  margin: 0;
  font-size: 14px;
}

.receipt-ai-pending,
.receipt-ai-failed {
  text-align: center;
  padding: 32px 16px;
}
.receipt-ai-pending p { margin: 8px 0; }

.alert-warn {
  background: #fef3c7;
  color: #92400e;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
}


/* ── BETALNINGSBATCHAR — UX-status + batch-status ── */

/* UX-status på supplier-invoice (härlett, inte DB-status) */
.status-obetald          { background: #fef3c7; color: #92400e; }
.status-forfallen        { background: #fee2e2; color: #991b1b; }
.status-bearbetas        { background: #dbeafe; color: #1e40af; }
.status-betald           { background: #d1fae5; color: #065f46; }
.status-i-utkast-batch   { background: #f3f4f6; color: #374151; }

/* Batch-status-chips */
.batch-status-utkast     { background: #f3f4f6; color: #374151; }
.batch-status-exporterad { background: #dbeafe; color: #1e40af; }
.batch-status-bekraftad  { background: #d1fae5; color: #065f46; }
.batch-status-avbruten   { background: #fee2e2; color: #991b1b; }

/* Alert-warning för "Inget bankkonto"-banner */
.alert-warning {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
}
.alert-warning a { color: #78350f; text-decoration: underline; }

/* ── BETALNINGSBATCHAR PR2 — XML/PDF/confirm UI ── */
.betaldatum-input {
  width: 130px;
  font-size: 12px;
  padding: 2px 6px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
}

.modal-pre-validation-errors {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 6px;
  padding: 12px;
  margin: 12px 0;
}
.modal-pre-validation-errors h4 {
  color: #991b1b;
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
}
.modal-pre-validation-errors li {
  color: #7f1d1d;
  font-size: 13px;
}

.alert.alert-error,
.alert.alert-success {
  white-space: pre-line;  /* respektera \n i felmeddelanden */
}

/* Standardserie per modul (Verifikationsserier-tab) */
.modul-defaults-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 8px 16px;
  align-items: center;
  margin-top: 12px;
}
.info-banner {
  background-color: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 6px;
  padding: 12px 16px;
  color: #92400e;
  margin: 12px 0;
}

/* Verifikationsserier-tabellen: kompaktare rader */
#serier-tabell thead th,
#serier-tabell tbody td {
  padding: 6px 12px;
}
.modul-rad {
  display: contents;
}
.modul-label {
  padding: 4px 0;
  color: var(--text);
}
.modul-serie-select {
  padding: 4px 8px;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: white;
  width: 100%;
}

/* Inställningar — Företag-tab sektioner */
.installningar-sektion {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.installningar-sektion > legend {
  font-weight: 600;
  color: var(--text);
  padding: 0 8px;
  font-size: 13px;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 8px;
}
.form-grid-2 label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--text-muted);
}
.form-grid-2 input,
.form-grid-2 textarea,
.form-grid-2 select {
  margin-top: 4px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  background: white;
}
.logotyp-placeholder {
  background-color: #fef3c7;
  border: 1px dashed #f59e0b;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  color: #92400e;
  font-size: 14px;
}
