/* ============ Reset / Base ============ */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: #f4f5f7;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, sans-serif;
  font-size: 13px;
}

a { color: #1d4380; text-decoration: none; }
a:hover { text-decoration: underline; }
.muted { color: #6b7280; }

/* ============ Top Bar ============ */
.topbar {
  background: #203eab;
  color: #f3f4f6;
  border-bottom: 1px solid #111827;
}
.topbar-inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  min-height: 56px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
}
.topbar-logo {
  height: 44px;
  width: auto;
  display: block;
}
.brand-text { display: inline-block; }
.brand-text span { color: #94a3b8; font-weight: 400; margin-left: 6px; }
.topbar nav a { color: #cbd5e1; margin-left: 16px; font-size: 13px; }
.topbar nav a:hover { color: #fff; text-decoration: none; }

main { margin: 0 auto; padding: 16px; }

/* ============ Toolbar Wochen-Navigation ============ */
.week-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
  flex-wrap: wrap;
}
.nav-group, .action-group { display: flex; align-items: center; gap: 8px; }
.week-title {
  display: flex; flex-direction: column;
  align-items: center;
  min-width: 220px;
}
.week-title strong { font-size: 16px; }
.week-title .muted { font-size: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: #1f2937;
  color: #fff;
  border: 1px solid #111827;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  min-width: 36px;
}
.btn:hover { background: #374151; text-decoration: none; }
.btn-secondary { background: #fff; color: #1f2937; border-color: #d1d5db; }
.btn-secondary:hover { background: #f3f4f6; }
.btn-archive {
  background: #b91c1c;
  border-color: #991b1b;
  color: #fff;
  font-weight: 600;
}
.btn-archive:hover { background: #991b1b; }

/* Datepicker (HTML5 type=week) -- entfernt zugunsten Mini-Kalender */

/* ----- Mini-Kalender ----- */
.cal-wrap {
  position: relative;
  display: inline-block;
}
.cal-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  color: #1f2937;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}
.cal-trigger:hover { border-color: #94a3b8; background: #f8fafc; }
.cal-trigger[aria-expanded="true"] { border-color: #2563eb; background: #eff6ff; }
.cal-icon  { font-size: 13px; }
.cal-label { font-weight: 600; }
.cal-chevron { color: #6b7280; font-size: 10px; }

.cal-popup {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  padding: 8px;
  min-width: 240px;
  font-size: 12px;
  user-select: none;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cal-month { font-weight: 600; color: #111827; }
.cal-nav {
  background: none;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 14px;
  cursor: pointer;
  color: #1f2937;
  line-height: 1;
}
.cal-nav:hover { background: #f1f5f9; border-color: #cbd5e1; }

.cal-grid {
  display: grid;
  grid-template-columns: 26px repeat(7, 26px);
  gap: 1px;
}
.cal-cell {
  width: 26px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 11px;
  color: #1f2937;
}
.cal-th {
  font-weight: 600;
  color: #6b7280;
  font-size: 10px;
}
.cal-th-kw { color: #94a3b8; }
.cal-kw {
  color: #94a3b8;
  font-size: 10px;
  cursor: pointer;
  border-right: 1px solid #e5e7eb;
}
.cal-kw:hover { background: #eff6ff; color: #1d4ed8; }
.cal-kw-active {
  background: #1d4ed8;
  color: #fff;
  font-weight: 600;
}
.cal-day {
  cursor: pointer;
}
.cal-day:hover { background: #eff6ff; }
.cal-day-out { color: #cbd5e1; }
.cal-day-today {
  outline: 1px solid #2563eb;
  outline-offset: -1px;
}
.cal-day-active {
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 600;
}
.cal-day-active.cal-day-today {
  background: #2563eb;
  color: #fff;
  outline-color: #1d4ed8;
}

.cal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid #e5e7eb;
  gap: 6px;
  font-size: 11px;
}
.cal-foot-btn {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  padding: 2px 8px;
  cursor: pointer;
  font-size: 11px;
}
.cal-foot-btn:hover { background: #f1f5f9; border-color: #94a3b8; }
.cal-foot-jump {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #6b7280;
}
.cal-kw-input, .cal-yr-input {
  width: 36px;
  padding: 1px 3px;
  border: 1px solid #d1d5db;
  border-radius: 3px;
  font-size: 11px;
  text-align: center;
}
.cal-yr-input { width: 50px; }

/* + Button im Fahrzeug-Header */
.add-vehicle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  padding: 0;
  background: #fff;
  border: 1px solid #94a3b8;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #1f2937;
  vertical-align: middle;
}
.add-vehicle:hover { background: #eff6ff; border-color: #2563eb; color: #1d4ed8; }

/* × Button für Extra-Vehicles (im cell-fahrzeug) */
.cell-fahrzeug .vehicle-extra {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
}
.cell-fahrzeug .remove-vehicle {
  margin-left: 4px;
  background: none;
  border: none;
  color: #991b1b;
  cursor: pointer;
  font-size: 12px;
  padding: 0 2px;
  line-height: 1;
  vertical-align: middle;
}
.cell-fahrzeug .remove-vehicle:hover { color: #7f1d1d; }

.save-indicator {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #4b5563;
}
.save-indicator.saving { background: #fef3c7; color: #92400e; }
.save-indicator.saved { background: #d1fae5; color: #065f46; }
.save-indicator.error { background: #fee2e2; color: #991b1b; }

/* ============ Plan-Tabelle ============ */
.plan-wrap {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  overflow: auto;
}
table.plan {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  table-layout: fixed;
}
table.plan th, table.plan td {
  border: 1px solid #94a3b8;
  padding: 0;
  vertical-align: middle;
  background: #fff;
}

/* Header */
.plan thead th {
  background: #f8fafc;
  font-weight: 700;
  padding: 4px 6px;
  text-align: center;
}
.header-meta th {
  background: #e2e8f0;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 12px 8px;
  letter-spacing: 0.2px;
}
.header-meta .title-left { text-align: center; }
.header-meta .title-left span {
  font-size: 19px;
  margin: 0 4px;
}
.header-meta .title-right { text-align: center; font-size: 17px; }

/* Spaltenbreiten – Doppelregel (col-* greift bei colgroup, cell-* als Fallback) */
.col-adii    { width: 95px; background: #fefce8 !important; }
.col-tag     { width: 44px; }
.col-section { /* group header */ }
.col-fahrzeug { width: 110px; }
.col-sonst   { width: 180px; }
.col-urlaub  { width: 130px; }
.col-krank   { width: 130px; }
.col-spacer  { width: 60px; }

/* Außendienst-Subspalten (Ort/Tätigkeiten/Namen) */
.col-ort     { width: 240px; }
.col-taet    { width: 100px; }
.col-namen   { width: 55px; }
.cell-ort   { width: 240px; }
.cell-taet  { width: 100px; }
.cell-namen { width: 55px; }

/* Header-Sub */
.header-sub th {
  background: #f1f5f9;
  font-weight: 600;
  font-size: 11px;
}

/* Tag-Spalte */
.cell-day {
  background: #fff;
  text-align: center;
  font-weight: 700;
  padding: 4px;
}
.cell-day .day-name { font-size: 13px; }
.cell-day .day-date { font-size: 12px; }
.cell-day-holiday { background: #fef2f2 !important; }
.holiday-badge {
  margin-top: 3px;
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 3px;
  padding: 1px 3px;
  line-height: 1.15;
  word-break: break-word;
  hyphens: auto;
}

/* Bereitschaft */
.cell-standby {
  background: transparent;
  padding: 0;
  vertical-align: top;
}
.standby-line {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 4px;
  font-size: 11px;
}
.standby-hws { background: #bfdbfe; border-bottom: 1px solid #94a3b8; }
.standby-it  { background: #fef9c3; }
.standby-line label { font-weight: 600; min-width: 30px; }
.standby-line select {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 11px;
  font-family: inherit;
  padding: 1px 2px;
  outline: none;
}
.standby-line select:focus { background: rgba(255,255,255,0.7); }

/* Zellen-Inputs (transparent, fühlen sich wie Excel an) */
.cell-input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  padding: 4px 6px;
  outline: none;
}
.cell-input:focus {
  background: #eff6ff;
  box-shadow: inset 0 0 0 2px #2563eb;
}
.cell-textarea {
  min-height: 110px;
  resize: vertical;
  font-family: inherit;
}

/* Fahrzeug-Label */
.cell-fahrzeug {
  background: #fff;
  text-align: center;
  font-style: italic;
  color: #1f2937;
  padding: 4px 6px;
}

/* Tag-Trennung */
tr.day-last td { border-bottom: 2px solid #1f2937; }

/* Abwesenheits-Zellen */
.cell-absence {
  position: relative;
  padding: 4px 26px 4px 4px;
  vertical-align: top;
  min-height: 60px;
}
.absence-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.absence-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  padding: 1px 4px 1px 6px;
  font-size: 11px;
  width: fit-content;
}
.absence-pill .remove {
  background: none;
  border: none;
  color: #991b1b;
  cursor: pointer;
  font-size: 12px;
  padding: 0 2px;
  line-height: 1;
}
.add-absence {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px; height: 20px;
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0;
  color: #4b5563;
}
.add-absence:hover { background: #f3f4f6; color: #1f2937; }

/* Vormerkungen Fußzeile */
.footer-vormerkungen {
  background: #f8fafc !important;
  padding: 6px 8px !important;
}
.footer-label { font-weight: 700; text-decoration: underline; margin-right: 6px; }
.footer-input { display: inline-block; width: 50%; min-width: 200px; }
.footer-legend { float: right; font-size: 11px; }
.footer-legend strong { text-decoration: underline; }

/* ============ Dialog ============ */
dialog {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 18px 20px;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
dialog::backdrop { background: rgba(15,23,42,0.4); }
dialog h3 { margin: 0 0 12px; font-size: 15px; }
dialog label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
}
dialog select {
  display: block;
  width: 100%;
  margin-top: 4px;
  padding: 6px 8px;
  font-size: 13px;
  font-family: inherit;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
}
.dialog-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 8px; }
.dialog-actions button {
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
}
.dialog-actions button.primary { background: #1f2937; color: #fff; border-color: #111827; }

/* ============ Mitarbeiter-Seite ============ */
.employees-page h1 { font-size: 20px; margin: 0 0 6px; }
.emp-form {
  display: flex;
  gap: 8px;
  margin: 18px 0;
}
.emp-form input {
  padding: 6px 8px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-family: inherit;
}
.emp-form input:focus { outline: 2px solid #2563eb; outline-offset: -1px; }

.emp-table {
  width: 100%;
  max-width: 760px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  overflow: hidden;
}
.emp-table th, .emp-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  font-size: 13px;
}
.emp-table th { background: #f1f5f9; font-weight: 600; }
.emp-table input {
  border: 1px solid transparent;
  background: transparent;
  padding: 4px 6px;
  font-family: inherit;
  font-size: 13px;
  border-radius: 3px;
  width: 100%;
}
.emp-table input:hover { border-color: #d1d5db; }
.emp-table input:focus { border-color: #2563eb; outline: none; background: #eff6ff; }
.emp-table tr.inactive { color: #9ca3af; font-style: italic; }
.row-actions button {
  font-size: 12px;
  padding: 4px 8px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
}
.row-actions button:hover { background: #f3f4f6; }

/* ============ Print: A4 Querformat ============ */
@media print {
  @page { size: A4 landscape; margin: 6mm; }
  html, body {
    background: #fff;
    font-size: 8pt;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .no-print { display: none !important; }
  main { padding: 0; max-width: none; }
  .plan-wrap { border: none; overflow: visible; }

  /* Tabelle füllt die Druckbreite (~285mm bei 6mm Rand) */
  table.plan {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 8pt;
  }
  table.plan th, table.plan td {
    border: 0.75pt solid #000 !important;
    background: #fff;
    padding: 1mm 1.2mm;
    vertical-align: top;
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
  /* Bereitschaftszelle oben verankert */
  .cell-standby { vertical-align: top !important; padding: 0 !important; }

  /* Spaltenbreiten in mm – Summe ≈ 285mm */
  /* Spaltenbreiten in mm – Summe ≈ 273mm (A4 quer minus Margins) */
  .col-adii    { width: 24mm; background: #fefce8 !important; }
  .col-tag     { width: 11mm; }
  .col-fahrzeug { width: 22mm; }
  .col-sonst   { width: 42mm; }
  .col-urlaub  { width: 30mm; }
  .col-krank   { width: 30mm; }
  /* Außendienst-Subspalten im Print */
  .col-ort     { width: 65mm; }
  .col-taet    { width: 32mm; }
  .col-namen   { width: 17mm; }
  .cell-ort   { width: 65mm; }
  .cell-taet  { width: 32mm; }
  .cell-namen { width: 17mm; }
  .col-sonst   { width: 42mm; }
  .col-urlaub  { width: 24mm; }
  .col-krank   { width: 24mm; }
  /* Ort / Tätigkeiten / Namen werden über das colgroup-Verhalten verteilt */

  /* Add-/Remove-Buttons im Druck ausblenden */
  .add-vehicle, .remove-vehicle { display: none !important; }

  /* Feiertags-Hervorhebung */
  .cell-day-holiday { background: #fef2f2 !important; }
  .holiday-badge {
    display: block;
    font-size: 5.5pt;
    font-weight: 600;
    color: #991b1b !important;
    background: #fee2e2 !important;
    border: 0.3pt solid #fca5a5;
    border-radius: 0.5mm;
    padding: 0.3mm 0.5mm;
    margin-top: 0.5mm;
    line-height: 1.1;
    word-break: break-word;
    hyphens: auto;
  }

  /* Farbige Header / Bereitschaft auch im Druck */
  .standby-hws { background: #bfdbfe !important; }
  .standby-it  { background: #fef9c3 !important; }
  .header-meta th {
    background: #e2e8f0 !important;
    padding: 2.5mm 2mm !important;
    font-size: 12pt !important;
    font-weight: 700;
  }
  .header-meta .title-left span { font-size: 13pt !important; }
  .header-meta .title-right { font-size: 11pt !important; }
  .header-sub th  { background: #f1f5f9 !important; font-size: 7pt; }
  .header-cols th { font-size: 9pt; padding: 1.2mm 1mm; font-weight: 700; }
  .footer-vormerkungen { background: #f8fafc !important; padding: 1.5mm 2mm !important; }

  /* Tag-Trennstrich kräftiger */
  tr.day-last td { border-bottom: 1.5pt solid #000 !important; }

  /* Inputs / Selects als reiner Text — Fokus-Highlight raus */
  .cell-input, .standby-line select, .standby-line input {
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 8pt;
    color: #000;
    border: none !important;
    outline: none !important;
  }
  .standby-line {
    padding: 0.6mm 1mm;
    font-size: 7.5pt;
  }
  .standby-line label { min-width: 8mm; }
  .standby-line select { font-size: 7.5pt; }
  select.cell-input { appearance: none; -webkit-appearance: none; }

  /* Textarea als plain text — keine Mindesthöhe */
  .cell-textarea {
    min-height: 0 !important;
    height: auto !important;
    resize: none;
    overflow: visible;
    white-space: pre-wrap;
  }

  /* Abwesenheits-Buttons im Druck weg */
  .add-absence { display: none !important; }
  .cell-absence { padding: 1mm !important; }
  .absence-pill {
    border: 0.4pt solid #666;
    padding: 0.2mm 1mm;
    font-size: 7.5pt;
    background: #fff !important;
  }
  .absence-pill .remove { display: none; }

  /* Tag-Spalte (Mo, Di...) */
  .cell-day { padding: 1mm; }
  .cell-day .day-name { font-size: 8pt; }
  .cell-day .day-date { font-size: 7.5pt; }

  /* Cell-Fahrzeug Label */
  .cell-fahrzeug { font-size: 7.5pt; padding: 1mm; }

  /* Footer */
  .footer-input { width: 50% !important; }
  .footer-legend { font-size: 6.5pt; display: block; margin-top: 0.5mm; float: none; }

  /* Alles auf eine Seite zwingen */
  .plan-wrap, table.plan { page-break-inside: avoid; }
  tr { page-break-inside: avoid; }
}

/* ===========================================================================
   MOBILE / kleine Bildschirme (Tablet hochkant + Handy)
   Die Tabelle ist breit (≈1100px) – auf kleinen Screens horizontal scrollbar,
   Schrift und Padding reduziert.
   =========================================================================== */
@media (max-width: 1000px) {
  main { padding: 8px; }
  .week-toolbar {
    flex-wrap: wrap;
    gap: 8px;
  }
  .week-title { font-size: 13px; }
  .plan-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  table.plan {
    font-size: 12px;
    min-width: 980px; /* erzwingt horizontalen Scroll statt komprimierte Cells */
  }
  table.plan th, table.plan td {
    padding: 2px 3px;
  }
  .cell-input, .cell-textarea {
    font-size: 12px;
    padding: 1px 3px;
  }
  .day-name { font-size: 13px; }
  .day-date { font-size: 11px; }
  .holiday-badge { font-size: 9px; padding: 1px 3px; }
  /* Bereitschaft-Block kompakter */
  .standby-line { font-size: 11px; }
  .standby-line label { min-width: 28px; }
  /* Footer kompakter */
  .footer-legend { font-size: 10px; display: block; margin-top: 4px; }
  .footer-vormerkungen { padding: 4px 6px; }
  /* Dialog auf Mobile breiter und scrollbar */
  dialog { max-width: 95vw; max-height: 90vh; }
  .absence-emp-list { max-height: 50vh; }
}

@media (max-width: 600px) {
  table.plan { font-size: 11px; }
  .cell-input, .cell-textarea { font-size: 11px; }
  .week-toolbar .week-title strong { font-size: 12px; }
  .week-toolbar .week-title .muted { display: none; }
  .btn { padding: 4px 8px; font-size: 12px; }
}

/* ===========================================================================
   Login-Seite
   =========================================================================== */
.login-body {
  background: #0f172a;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.login-wrap {
  width: 100%;
  max-width: 380px;
  padding: 20px;
}
.login-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  padding: 0;          /* Padding wandert in die einzelnen Bereiche */
  overflow: hidden;    /* damit der blaue Header die Ecken nicht überlappt */
}
.login-header {
  background: #1f3dab;
  color: #fff;
  text-align: center;
  padding: 26px 28px 22px;
}
.login-logo {
  max-height: 50px;
  margin-bottom: 12px;
}
.login-header h1 {
  margin: 0;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.login-sub {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin-top: 4px;
}
.login-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 8px 12px;
  border-radius: 4px;
  margin: 16px 28px 0;
  font-size: 13px;
}
.login-form {
  padding: 20px 28px 28px;
}
.login-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  margin: 12px 0 4px;
}
.login-form input[type=text],
.login-form input[type=password] {
  width: 100%;
  box-sizing: border-box;
  padding: 9px 11px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
}
.login-form input:focus {
  outline: 2px solid #2563eb;
  outline-offset: -1px;
  border-color: #2563eb;
}
.login-btn {
  width: 100%;
  margin-top: 20px;
  padding: 10px 16px;
  background: #1f2937;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.login-btn:hover { background: #111827; }
.login-btn:active { background: #000; }
