/* Klopfwerk — Design Tokens & Komponenten
   Palette, Typo und das Puls-Signaturelement an einem Ort. */


/* Big Shoulders Display */
@font-face {
  font-family: 'Big Shoulders';
  src: url("/assets/BigShoulders-Bold-a5c0f104.woff2") format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Big Shoulders';
  src: url("/assets/BigShoulders-ExtraBold-f39c9de0.woff2") format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* IBM Plex Sans */
@font-face {
  font-family: 'IBM Plex Sans';
  src: url("/assets/IBMPlexSans-Regular-cd592da6.woff2") format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url("/assets/IBMPlexSans-Medium-5a93fa32.woff2") format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url("/assets/IBMPlexSans-SemiBold-b90481d1.woff2") format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* IBM Plex Mono */
@font-face {
  font-family: 'IBM Plex Mono';
  src: url("/assets/IBMPlexMono-Regular-387df202.woff2") format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url("/assets/IBMPlexMono-Medium-a53827a6.woff2") format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}






:root {
  --ink: #12151a;
  --panel: #1a1f26;
  --panel-raised: #20262e;
  --hairline: #262d36;
  --fg: #e7ebef;
  --fg-muted: #8993a1;
  --brass: #c89b4a;
  --brass-dim: #8a6f3c;
  --up: #3fd68c;
  --down: #f0555c;
  --pending: #8993a1;

  --font-display: 'Big Shoulders', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: inherit; text-decoration: none; }

/* ---------- Topbar ---------- */

.kw-topbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--hairline);
}

.kw-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fg);
}

.kw-wordmark span { color: var(--brass); }

.kw-summary {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  gap: 18px;
}
@media (max-width: 640px) {
  .kw-summary {
    display:none;
  }
}  

.kw-summary .dot { margin-right: 5px; }

/* ---------- Layout ---------- */

.kw-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px;
}

.kw-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.kw-back:hover { color: var(--brass); }

/* ---------- Status dot ---------- */

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.status-dot.up { background: var(--up); box-shadow: 0 0 8px color-mix(in srgb, var(--up) 60%, transparent); }
.status-dot.down { background: var(--down); box-shadow: 0 0 8px color-mix(in srgb, var(--down) 60%, transparent); }
.status-dot.pending, .status-dot.paused { background: var(--pending); }

/* ---------- Monitor-Liste ---------- */

.kw-monitor-list {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
}

.kw-monitor-row {
  display: grid;
  grid-template-columns: 16px 1fr 140px 90px 130px 16px;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.15s ease;
}
.kw-monitor-row:last-child { border-bottom: none; }
.kw-monitor-row:hover { background: var(--panel-raised); }

.kw-monitor-name {
  font-weight: 600;
  font-size: 15px;
}
.kw-monitor-type {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.kw-uptime {
  font-family: var(--font-mono);
  font-size: 13px;
  text-align: right;
}
.kw-uptime.low { color: var(--down); }

.kw-timestamp {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
}

.kw-chevron { color: var(--fg-muted); text-align: right; }

/* ---------- Puls-Signatur ---------- */

.kw-pulse {
  width: 140px;
  height: 32px;
  overflow: visible;
}

.kw-pulse path {
  fill: none;
  stroke-width: 1.5;
}

.kw-pulse.up path {
  stroke: var(--up);
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: kw-draw 3.2s linear infinite;
}

.kw-pulse.down path {
  stroke: var(--down);
  opacity: 0.85;
}

@keyframes kw-draw {
  from { stroke-dashoffset: 300; }
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .kw-pulse.up path { animation: none; stroke-dashoffset: 0; }
}

.kw-pulse-hero {
  width: 100%;
  height: 140px;
  background: var(--panel-raised);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  margin: 20px 0 28px;
}

/* ---------- Hourly Chart (36h Up-Down-Balken) ---------- */

.kw-hourly-chart {
  width: 100%;
  height: 100%;
  display: block;
}

.kw-hourly-chart .kw-bar-up      { fill: var(--up); }
.kw-hourly-chart .kw-bar-down    { fill: var(--down); }
.kw-hourly-chart .kw-bar-unknown { fill: var(--pending); opacity: 0.35; }
.kw-hourly-chart .kw-chart-tick  { stroke: var(--hairline); stroke-width: 0.25; }
.kw-hourly-chart .kw-chart-label {
  fill: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 5px;        /* viewBox-Einheiten, kein px */
  text-anchor: middle;
}
.kw-hourly-chart .kw-chart-empty {
  fill: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 7px;
}

/* ---------- Detail-Header ---------- */

.kw-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.kw-detail-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: 0.01em;
}

.kw-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
}
.kw-status-pill.up { color: var(--up); border-color: color-mix(in srgb, var(--up) 40%, var(--hairline)); }
.kw-status-pill.down { color: var(--down); border-color: color-mix(in srgb, var(--down) 40%, var(--hairline)); }






/* ---------- Stat-Grid ---------- */

.kw-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
}

.kw-stat {
  background: var(--panel);
  padding: 18px 20px;
}

.kw-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.kw-stat-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
}
.kw-stat-value.low { color: var(--down); }

/* ---------- Vorfälle ---------- */


/* ---------- Incidence-Grid ---------- */

.kw-incidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 10px;
  overflow: hidden;
}

.kw-incidence-cell {

  padding: 18px 20px;
}


.kw-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
  margin: 0 0 12px;
}

.kw-incident-list {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
}

.kw-incident {
  display: grid;
  grid-template-columns: 200px 200px 200px;
  align-items: baseline;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}
.kw-incident:last-child { border-bottom: none; }

.kw-incident-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  flex-shrink: 0;
  width: 130px;
}

.kw-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--fg-muted);
  font-size: 14px;
}

/* ---------- Responsive ---------- */

@media (max-width: 640px) {
  .kw-monitor-row {
    grid-template-columns: 16px 1fr 16px;
    grid-template-areas:
      "dot name chevron"
      "pulse pulse pulse"
      "uptime uptime timestamp";
  }
  .kw-pulse { display: none; }
  .kw-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Auth (Login / Passwort) ---------- */

.kw-auth {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 90px);
}

.kw-auth-panel {
  width: 100%;
  max-width: 360px;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 32px;
}

.kw-auth-hint {
  color: var(--fg-muted);
  font-size: 13px;
  margin: -8px 0 20px;
}

.kw-auth-link {
  display: block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.kw-auth-link:hover { color: var(--brass); }

.kw-form { display: flex; flex-direction: column; }

.kw-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.kw-input {
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 12px;
  margin-bottom: 18px;
  width: 100%;
}
.kw-input:focus {
  outline: none;
  border-color: var(--brass);
}

.kw-button {
  background: var(--brass);
  border: none;
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.kw-button:hover { background: var(--brass-dim); }

.kw-flash {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
}
.kw-flash-alert {
  background: color-mix(in srgb, var(--down) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--down) 40%, var(--hairline));
  color: var(--down);
}
.kw-flash-notice {
  background: color-mix(in srgb, var(--up) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--up) 40%, var(--hairline));
  color: var(--up);
}

.kw-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.kw-divider::before, .kw-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

.kw-button-secondary {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.kw-button-secondary:hover { border-color: var(--up); }

.kw-button-danger,
.kw-button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  min-height: 2.5rem;

  padding: 0.5rem 0.9rem;
  border: 1px solid var(--hairline);
  border-radius: 6px;

  font: inherit;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}






/* ---------- Account-Menü (Dropdown) ---------- */

.kw-topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.kw-account-menu {
  position: relative;
}

.kw-account-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  padding: 4px 8px 4px 4px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.kw-account-trigger::-webkit-details-marker { display: none; }
.kw-account-trigger::marker { display: none; content: ""; }
.kw-account-trigger { list-style: none; }
.kw-account-trigger:hover { background: var(--panel-raised); }

.kw-account-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.kw-account-avatar-fallback {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--panel-raised);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--brass);
}

.kw-account-name {
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .kw-account-name {
    display:none;
  }
  .kw-account-chevron {
    display:none;
  }
}

.kw-account-chevron {
  font-size: 10px;
  color: var(--fg-muted);
}

.kw-account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 20;
}

.kw-account-dropdown-header {
  padding: 8px 10px 12px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kw-account-email {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg);
}

.kw-account-org {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.kw-account-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.kw-account-item:hover { background: var(--panel-raised); }

.kw-account-item-button { color: var(--down); }

.kw-account-divider {
  height: 1px;
  background: var(--hairline);
  margin: 8px 4px;
}

/* Dropdown schließt beim Klick daneben — natives <details>-Verhalten,
   nur das Overlay verhindert Layout-Sprünge beim Öffnen. */
.kw-account-menu[open] .kw-account-trigger { background: var(--panel-raised); }

/* ---------- Settings ---------- */

.kw-settings-panel {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 28px;
  max-width: 480px;
  margin-bottom: 28px;
}

.kw-avatar-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.kw-avatar-preview {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--hairline);
}

.kw-avatar-fallback {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--panel-raised);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--brass);
}

.kw-field-error {
  color: var(--down);
  font-size: 12px;
  margin: 4px 0 0;
}

.kw-avatar-remove {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 12px;
  font-family: var(--font-mono);
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
}
.kw-avatar-remove:hover { color: var(--down); }

.kw-danger-zone {
  background: var(--panel);
  border: 1px solid color-mix(in srgb, var(--down) 35%, var(--hairline));
  border-radius: 10px;
  padding: 24px 28px;
  max-width: 480px;
}

.kw-button-danger {
  background: transparent;
  border: 1px solid var(--down);
  color: var(--down);
}
.kw-button-danger:hover { background: color-mix(in srgb, var(--down) 15%, transparent); }

/* ---------- Primary Nav (Checks / Gruppen) ---------- */

.kw-layout {
  display: grid;
  /* Standardbreite Sidebar, schmaler auf kleinen Screens — siehe Media-Queries */
  grid-template-columns: var(--kw-sidebar-width, 220px) 1fr;
  align-items: start;
  padding: 24px 32px;
  gap: 32px;
  width: 100%;
  margin: 0 auto;
  flex: 1 0 auto;
}

.kw-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
}

.kw-content { 
  min-width: 0; 
  max-width: 1200px;
}


.kw-button-right {
  display: flex; 
  justify-content: flex-end; 
  margin-bottom: 16px;
}


/* Wenn kw-main innerhalb des neuen Grid-Layouts liegt, übernimmt das
   Layout das Padding; kw-main soll dann nicht nochmal paddings setzen. */
.kw-content > .kw-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

.kw-primary-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-right: 1px solid var(--hairline);
  padding-right: 20px;
}

.kw-nav-item a {
  display: block;
  color: var(--fg-muted);
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}
.kw-nav-item a:hover {
  color: var(--fg);
  background: var(--panel-raised);
}

/* svg test */ 

.kw-nav-item a {
  display: flex;
  align-items: center;       /* vertikal zentrieren */
  gap: 0.5rem;               /* Abstand zwischen Icon und Text */
  text-decoration: none;
  color: inherit;
}

/* Optional: Icon-Größe explizit steuern */
.kw-nav-item a svg {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;            /* Icon soll nicht schrumpfen */
}

.icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
}

/* Optional: größere Variante */
.icon-lg {
  width: 1.5em;
  height: 1.5em;
}

/* Optional: kleinere Variante */
.icon-sm {
  width: 0.75em;
  height: 0.75em;
}

.kw-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}

/* Icon: immer sichtbar, feste Größe */
.kw-nav-icon {
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
}

/* Text: standardmäßig sichtbar */
.kw-nav-text {
  opacity: 1;
  width: auto;
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    width 0.2s ease;
}

/* Kleiner Bildschirm: nur Icons */
@media (max-width: 640px) {
  .kw-nav-text {
    opacity: 0;
    width: 0;
  }
}
















/* Sidebar schrumpft auf Tablets, wird horizontal auf Phones. */
@media (max-width: 900px) {
  .kw-layout {
    --kw-sidebar-width: 160px;
    padding: 20px 24px;
    gap: 20px;
  }
  .kw-primary-nav { font-size: 12px; padding-right: 14px;     min-width: 200px minmax(0, 1fr);}
  .kw-nav-item a { padding: 6px 8px; }
}

@media (max-width: 640px) {
  .kw-layout {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
  }
  .kw-sidebar { 
    position: static; 

  }
  .kw-primary-nav {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    padding: 0 0 12px;
    gap: 6px;
  }
  .kw-nav-item a { padding: 6px 10px; }
}

/* Auf sehr breiten Screens darf die Sidebar etwas mehr Platz bekommen. */
@media (min-width: 1400px) {
  .kw-layout {
    --kw-sidebar-width: 260px;
    gap: 40px;
  }
}

/* ---------- Checkliste (Gruppen-Formular) ---------- */

.kw-checklist {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  max-height: 280px;
  overflow-y: auto;
}

.kw-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
  cursor: pointer;
}
.kw-checklist-item:last-child { border-bottom: none; }
.kw-checklist-item:hover { background: var(--panel-raised); }

/* ---------- Freigabe (Grants) ---------- */

.kw-grant-list {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
}

.kw-grant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
}
.kw-grant-row:last-child { border-bottom: none; }

.kw-grant-account {
  font-weight: 600;
  font-size: 14px;
  display: block;
}

.kw-grant-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}

/* ---------- Slug-Anzeige (Account-Settings) ---------- */

.kw-slug-display code {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--brass);
  background: var(--panel-raised);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 6px 12px;
}

/* ---------- Footer ---------- */

.kw-footer {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 24px 32px 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: auto;
}
.kw-footer a { color: var(--fg-muted); }
.kw-footer a:hover { color: var(--brass); }

/* ---------- Wartungsfenster ---------- */

.status-dot.maintenance {
  background: #5b8def; /* eigene, neutrale Farbe — weder up-grün noch down-rot */
}

.kw-status-pill.maintenance {
  color: #5b8def;
  border-color: color-mix(in srgb, #5b8def 40%, var(--hairline));
}

.kw-maintenance-tag {
  color: #5b8def;
  font-weight: 600;
  margin-left: 6px;
}
