/* Myconsult design system — light mode only, matching myconsult-kpi.web.app.
   Ported from the prototype's stylesheet with the shell/auth additions. */
:root {
  --navy: #13598c;
  --coral: #e86f82;
  --magenta: #e252ae;
  --sky: #82b9d5;
  --bg: #f0f4f8;
  --card: #ffffff;
  --green: #2e9e5b;
  --amber: #e0a32c;
  --red: #d9483b;
  --ink: #1b2733;
  --sub: #6b7a8c;
  --weekend: #f5f7fa;
  --line: #dbe3ec;
  --header-gradient: linear-gradient(100deg, var(--navy) 0%, var(--coral) 65%, var(--magenta) 100%);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

/* ---- header ---- */
.app-header { background: var(--header-gradient); color: #fff; padding: 22px 32px 20px; }
.app-header__inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.app-header h1 { margin: 0 0 4px; font-size: 25px; font-weight: 800; letter-spacing: -0.3px; }
.app-header p { margin: 0; font-size: 13px; opacity: 0.92; font-weight: 500; }
.app-header__user { display: flex; align-items: center; gap: 16px; }
.app-header__user .profile__name { color: #fff; }
.app-header__user .profile__email { color: rgb(255 255 255 / 0.8); }

/* ---- auth shell ---- */
.shell { max-width: 480px; margin: 3rem auto; padding: 0 1.25rem; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 2rem; box-shadow: 0 1px 3px rgb(19 89 140 / 0.06);
}
.card h2 { margin: 0 0 0.375rem; font-size: 1.125rem; font-weight: 700; }
.muted { color: var(--sub); font-size: 0.875rem; margin: 0; }

.profile__name { margin: 0; font-size: 15px; font-weight: 700; }
.profile__email { margin: 1px 0 0; font-size: 12px; color: var(--sub); overflow-wrap: anywhere; }
.badges { margin: 6px 0 0; display: flex; gap: 5px; }
.badge {
  padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase; background: rgb(255 255 255 / 0.22); color: #fff;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  padding: 9px 16px; border-radius: 8px; border: none; font-family: inherit;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn--google {
  width: 100%; margin-top: 1.5rem; background: var(--navy);
  border: 1px solid var(--navy); color: #fff; font-size: 15px; padding: 12px 16px;
}
.btn--google:not(:disabled):hover { background: #0f4a75; }
.btn--google svg { background: #fff; border-radius: 2px; padding: 1px; }
.btn--ghost-light { background: rgb(255 255 255 / 0.16); color: #fff; }
.btn--ghost-light:hover { background: rgb(255 255 255 / 0.26); }
.btn--quiet { background: #fff; color: var(--navy); border: 1px solid #d6e0ea; font-size: 12px; padding: 7px 12px; }
.btn--quiet:hover { background: #eef4f9; }
.btn-save { background: linear-gradient(100deg, var(--navy), var(--magenta)); color: #fff; }
.btn-delete { background: #fdecec; color: var(--red); }
.btn-cancel { background: #eef2f6; color: var(--sub); }

.alert {
  margin: 1.25rem 0 0; padding: 0.75rem 0.875rem; border-radius: 8px;
  background: #fdecea; color: var(--red); font-size: 0.8125rem; line-height: 1.45;
}
.alert--float {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 60; margin: 0; box-shadow: 0 6px 24px rgb(0 0 0 / 0.18); max-width: 520px;
}
.notice {
  margin: 0 0 16px; padding: 10px 12px; border-radius: 8px;
  background: #eef4f9; color: var(--navy); font-size: 12px; line-height: 1.5;
}

/* ---- tabs ---- */
.tabs {
  display: flex; gap: 8px; padding: 14px 32px 0;
  background: var(--bg); border-bottom: 1px solid var(--line);
}
.tab {
  padding: 10px 18px; font-size: 13.5px; font-weight: 600; color: var(--sub);
  cursor: pointer; border: none; background: none; font-family: inherit;
  border-bottom: 3px solid transparent;
}
.tab.active { color: var(--navy); border-bottom-color: var(--coral); }

.container { padding: 22px 32px 48px; max-width: 1320px; margin: 0 auto; }
.section-title { font-size: 16px; font-weight: 700; margin: 8px 0 14px; }

/* ---- stat cards ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.stat-card {
  background: var(--card); border-radius: 12px; padding: 14px 16px;
  box-shadow: 0 1px 3px rgb(19 89 140 / 0.08);
}
.stat-card .num { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.stat-card .label {
  font-size: 11px; color: var(--sub); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.4px; margin-top: 4px;
}

/* ---- month calendar ---- */
.cal-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 12px; flex-wrap: wrap; }
.cal-nav { display: flex; align-items: center; gap: 14px; }
.cal-nav > button:not(.btn) {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid #d6e0ea;
  background: #fff; color: var(--navy); font-size: 16px; font-weight: 700; cursor: pointer;
}
.cal-nav > button:not(.btn):hover { background: var(--navy); color: #fff; }
.cal-month-label { font-size: 18px; font-weight: 800; min-width: 170px; text-align: center; }
.add-visit-btn {
  background: linear-gradient(100deg, var(--navy), var(--magenta));
  color: #fff; border: none; border-radius: 8px; padding: 9px 16px;
  font-weight: 700; font-size: 13px; cursor: pointer; font-family: inherit;
}
.add-visit-btn:hover { opacity: 0.9; }

.team-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; min-height: 30px; }
.legend-chip {
  display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 20px; padding: 5px 12px 5px 8px; font-size: 12px; font-weight: 600;
  color: var(--ink); cursor: pointer; font-family: inherit; transition: opacity 0.12s ease;
}
.legend-chip.off { opacity: 0.4; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-empty { align-self: center; }

.weekday-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 6px; }
.weekday-row div {
  font-size: 11px; font-weight: 700; color: var(--sub);
  text-transform: uppercase; text-align: center; letter-spacing: 0.4px;
}

.month-body { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.day-cell {
  background: var(--card); border-radius: 10px; min-height: 112px; padding: 8px;
  box-shadow: 0 1px 2px rgb(19 89 140 / 0.06); position: relative;
  display: flex; flex-direction: column; gap: 5px;
}
.day-cell.weekend { background: var(--weekend); }
.day-cell.blank { background: transparent; box-shadow: none; }
.day-cell.today { outline: 2px solid var(--coral); outline-offset: -2px; }
.day-num { font-size: 12px; font-weight: 700; color: var(--sub); }
.day-cell.today .day-num { color: var(--coral); }
.day-events { display: flex; flex-direction: column; gap: 4px; overflow: hidden; }

.event-chip {
  border-left: 3px solid var(--coral); border-top: none; border-right: none; border-bottom: none;
  border-radius: 5px; padding: 3px 6px; font-size: 10.5px; font-weight: 600;
  color: var(--ink); cursor: pointer; line-height: 1.3; text-align: left;
  font-family: inherit; width: 100%; display: block;
}
.event-chip:hover { filter: brightness(0.97); }
.chip-dots { display: inline-flex; gap: 2px; margin-right: 4px; vertical-align: middle; }
.chip-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.chip-title { display: inline; overflow-wrap: anywhere; }
.event-chip .tm { font-weight: 700; font-size: 9.5px; display: block; }

.cell-add {
  position: absolute; top: 6px; right: 6px; width: 18px; height: 18px; border-radius: 50%;
  background: #eef2f6; color: var(--navy); font-size: 12px; font-weight: 800; line-height: 1;
  text-align: center; cursor: pointer; opacity: 0; border: none; font-family: inherit;
  transition: opacity 0.12s ease;
}
.day-cell:hover .cell-add, .cell-add:focus-visible { opacity: 1; }

/* ---- annual deadline view ---- */
.month-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.month-card {
  background: var(--card); border: none; border-radius: 12px; padding: 0 0 14px;
  box-shadow: 0 1px 3px rgb(19 89 140 / 0.08); cursor: pointer;
  font-family: inherit; text-align: left; overflow: hidden;
}
.month-card:hover { box-shadow: 0 3px 10px rgb(19 89 140 / 0.14); }
.month-card__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px 10px; }
.month-card__name { font-weight: 700; font-size: 15px; }
.month-card__count {
  font-size: 12px; font-weight: 700; color: #fff; border-radius: 20px; padding: 3px 10px;
}
.heat-hot .month-card__count { background: var(--red); }
.heat-warm .month-card__count { background: var(--amber); }
.heat-calm .month-card__count { background: var(--green); }
.month-card__bar { display: flex; gap: 3px; padding: 0 16px 14px; }
.month-card__bar .seg { height: 6px; border-radius: 3px; }
.seg-mthly { background: var(--sky); }
.seg-audit { background: var(--coral); }
.seg-other { background: #c9d4e0; }
.seg-empty { background: #c9d4e0; opacity: 0.4; flex-grow: 1; }
.month-card__caption { padding: 0 16px; font-size: 10.5px; color: var(--sub); font-weight: 600; }
.year-undated { margin-top: 16px; font-style: italic; }

.dl-group {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.4px; color: var(--sub); margin: 14px 0 8px;
}
.dl-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid #eef2f6; font-size: 13px;
}
.dl-name { font-weight: 600; }
.dl-period { color: var(--sub); font-weight: 500; font-size: 11.5px; }
.dl-lead {
  font-size: 11px; font-weight: 700; color: var(--navy); background: #e8f1f8;
  padding: 2px 9px; border-radius: 20px; white-space: nowrap;
}
.dl-lead--unresolved { color: var(--sub); background: #eef2f6; font-style: italic; }

/* ---- modal ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgb(19 32 45 / 0.45); display: none;
  align-items: flex-start; justify-content: center; padding: 40px 20px; z-index: 50; overflow-y: auto;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--card); border-radius: 14px; max-width: 460px; width: 100%;
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.25);
}
.modal--wide { max-width: 560px; }
.modal-head {
  background: linear-gradient(100deg, var(--navy), var(--magenta)); color: #fff;
  padding: 16px 20px; border-radius: 14px 14px 0 0;
  display: flex; justify-content: space-between; align-items: center;
}
.modal-head h3 { margin: 0; font-size: 16px; font-weight: 800; }
.modal-close { cursor: pointer; font-size: 20px; opacity: 0.85; line-height: 1; background: none; border: none; color: #fff; }
.modal-body { padding: 18px 20px 6px; }
.modal-body--scroll { max-height: 60vh; overflow-y: auto; padding-bottom: 20px; }
.modal-footer { display: flex; align-items: center; gap: 8px; padding: 14px 20px 20px; }
.modal-footer .spacer { flex: 1; }

.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 11.5px; font-weight: 700; color: var(--sub);
  text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 5px;
}
.field input, .field select {
  width: 100%; padding: 9px 10px; border: 1px solid #d6e0ea; border-radius: 7px;
  font-family: inherit; font-size: 13px; color: var(--ink); background: #fff;
}
.field input:disabled, .field select:disabled { background: #f5f7fa; color: var(--sub); }
.field-row { display: flex; gap: 10px; }
.field-row .field { flex: 1; }
.recur-hint { font-size: 11px; color: var(--sub); margin: -6px 0 14px; }

.team-checklist {
  max-height: 150px; overflow-y: auto; border: 1px solid #d6e0ea; border-radius: 7px;
  padding: 6px 10px; display: flex; flex-direction: column; gap: 2px;
}
.team-check-row {
  display: flex; align-items: center; gap: 8px; padding: 6px 4px; font-size: 13px;
  cursor: pointer; border-bottom: 1px solid #f3f6f9;
}
.team-check-row:last-child { border-bottom: none; }
.team-check-row input { width: 15px; height: 15px; flex-shrink: 0; cursor: pointer; }
.team-check-row .swatch { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.team-checklist-empty { font-size: 12px; color: var(--sub); font-style: italic; padding: 6px 4px; }

@media (max-width: 1100px) {
  .month-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .app-header, .tabs, .container { padding-left: 16px; padding-right: 16px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .day-cell { min-height: 76px; padding: 5px; }
  .event-chip { font-size: 9px; }
  .cell-add { opacity: 1; }
}

/* ---- hours tracking ---- */
.stats-row--wide { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

.hours-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; margin-bottom: 18px; flex-wrap: wrap;
}
.hours-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.hours-filters input, .hours-filters select {
  padding: 8px 10px; border: 1px solid #d6e0ea; border-radius: 7px;
  font-family: inherit; font-size: 12.5px; color: var(--ink); background: #fff; min-width: 210px;
}
.hours-hint { margin: -8px 0 14px; }

.summary-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 26px; }
.summary-card {
  background: var(--card); border-radius: 12px; padding: 16px 18px;
  box-shadow: 0 1px 3px rgb(19 89 140 / 0.08);
}
.summary-card h4 { margin: 0 0 12px; font-size: 13px; font-weight: 700; }
.bar-item { margin-bottom: 9px; }
.bar-item:last-child { margin-bottom: 0; }
.bar-label {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 11.5px; font-weight: 600; margin-bottom: 3px;
}
.bar-label span:last-child { color: var(--sub); font-weight: 700; white-space: nowrap; }
.bar-ot { color: var(--amber); }
.bar-track { background: #eef2f6; border-radius: 6px; height: 8px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--navy), var(--magenta)); }
.bar-empty { font-style: italic; font-size: 12px; }

.hours-table-wrap {
  background: var(--card); border-radius: 12px;
  box-shadow: 0 1px 3px rgb(19 89 140 / 0.08); overflow-x: auto;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.hours-table th {
  text-align: left; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.3px;
  color: var(--sub); font-weight: 700; padding: 12px 14px;
  border-bottom: 1px solid #eef2f6; background: #fafcfe; white-space: nowrap;
}
.hours-table td { padding: 11px 14px; border-bottom: 1px solid #f3f6f9; vertical-align: top; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tbody tr:hover td { background: #fafbfd; }
.hours-table .nowrap { white-space: nowrap; }
.row-service { display: block; color: var(--sub); font-size: 11px; }
.row-notes { color: var(--sub); max-width: 220px; }
.row-hint { color: var(--sub); font-weight: 600; font-size: 11px; white-space: nowrap; }
.row-orphaned td { background: #fcfbf7; }

.row-actions { display: flex; gap: 8px; }
.row-action {
  background: none; border: none; padding: 0; cursor: pointer; font-family: inherit;
  font-size: 11px; font-weight: 700; color: var(--navy);
}
.row-action:hover { text-decoration: underline; }
.row-action--del { color: var(--red); }

.ot-dash { color: var(--sub); }
.ot-cell { display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.ot-badge {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  padding: 3px 9px; border-radius: 20px; white-space: nowrap;
}
.ot-badge--approved { background: #e6f5eb; color: var(--green); }
.ot-badge--pending { background: #fdf0dc; color: var(--amber); }
.ot-badge--rejected { background: #fdecec; color: var(--red); }
.ot-stale {
  display: inline-block; margin-left: 5px; width: 15px; height: 15px; line-height: 15px;
  text-align: center; border-radius: 50%; background: var(--amber); color: #fff;
  font-size: 10px; font-weight: 800; cursor: help;
}
.ot-actions { display: flex; gap: 6px; }
.ot-action {
  background: #eef2f6; border: none; border-radius: 5px; padding: 3px 8px;
  font-family: inherit; font-size: 10.5px; font-weight: 700; color: var(--sub); cursor: pointer;
}
.ot-action:hover { background: #e2e8f0; color: var(--ink); }
.ot-action--approve { background: #e6f5eb; color: var(--green); }
.ot-action--reject { background: #fdecec; color: var(--red); }

.source-tag { font-weight: 700; font-size: 11px; white-space: nowrap; }
.source-tag--calendar { color: var(--navy); }
.source-tag--manual { color: var(--sub); }
.source-tag--orphaned { color: var(--amber); cursor: help; }

.empty-state { padding: 32px; text-align: center; color: var(--sub); font-size: 13px; font-style: italic; }

@media (max-width: 900px) {
  .summary-cols { grid-template-columns: 1fr; }
  .hours-filters input, .hours-filters select { min-width: 0; width: 100%; }
}

/* ---- Google Calendar connection ---- */
.gcal { display: flex; align-items: center; gap: 8px; }
.gcal__state { font-size: 11px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; }
.gcal__state--on { color: #d8f5e3; }
.gcal__state--off { color: rgb(255 255 255 / 0.75); }
.gcal__state--warn { color: #ffe2b0; }
.btn--small { padding: 6px 11px; font-size: 11.5px; }

/* ---- admin screens: clients, activity types, users ---- */
/* The header badge is white-on-gradient; inside a table it needs its own
   colours, so these are scoped rather than overriding the base badge. */
.hours-table .badge { background: #eef2f6; color: var(--sub); }
.hours-table .badge--lead { background: #e6f5eb; color: var(--green); }
.hours-table .badge--admin { background: #e8eef7; color: var(--navy); }
.hours-table .badge--approves { background: #fdf0dc; color: var(--amber); }
.hours-table .badge--muted { background: #f2f4f7; color: var(--sub); }

.row--inactive { opacity: 0.55; }
.row--inactive .cell-strong { text-decoration: line-through; }

.cell-strong { font-weight: 700; }
.cell-muted { color: var(--sub); }
.cell-warn { color: var(--amber); font-weight: 700; }
.cell-swatch { width: 58px; }

.tag {
  display: inline-block; padding: 1px 6px; border-radius: 4px; background: #eef2f6;
  color: var(--sub); font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; vertical-align: middle;
}

.inline-input {
  width: 100%; max-width: 320px; padding: 6px 8px; border: 1px solid transparent;
  border-radius: 6px; font-family: inherit; font-size: 13px; font-weight: 700;
  color: var(--ink); background: transparent;
}
.inline-input:hover { border-color: var(--line); background: #fff; }
.inline-input:focus { border-color: var(--navy); background: #fff; outline: none; }

.btn--tiny { padding: 3px 8px; font-size: 10.5px; }

.colour-picker {
  width: 34px; height: 26px; padding: 0; border: 1px solid var(--line);
  border-radius: 6px; background: none; cursor: pointer;
}
.swatch--lg { display: inline-block; width: 18px; height: 18px; border-radius: 50%; }

.palette-row { display: flex; gap: 6px; margin: 0 0 14px; }
.palette-row .swatch { width: 16px; height: 16px; border-radius: 50%; display: inline-block; }

.engagement-row {
  display: flex; align-items: center; gap: 10px; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--line);
}
.engagement-row:last-child { border-bottom: none; }
.engagement-row--inactive { opacity: 0.55; }
.engagement-row__label { font-size: 13px; font-weight: 700; }
.engagement-row__meta { display: block; font-size: 11px; font-weight: 500; color: var(--sub); }

.check-row { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 500; }
.check-row input { width: 15px; height: 15px; cursor: pointer; }

/* ---- What's New ---- */
.news-entry {
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  padding: 18px 20px; margin-bottom: 14px;
}
.news-entry__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--line);
}
.news-entry__title { margin: 0; font-size: 15px; font-weight: 800; color: var(--navy); }
.news-entry__date { font-size: 11.5px; font-weight: 700; color: var(--sub); white-space: nowrap; }

.news-list { margin: 0; padding: 0; list-style: none; }
.news-list li {
  display: flex; align-items: baseline; gap: 10px; padding: 7px 0;
  font-size: 13.5px; line-height: 1.55;
}
.news-kind {
  flex-shrink: 0; min-width: 62px; text-align: center; padding: 2px 8px;
  border-radius: 999px; font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.03em;
}
.news-kind--new { background: #e6f5eb; color: var(--green); }
.news-kind--fixed { background: #e8eef7; color: var(--navy); }
.news-kind--changed { background: #fdf0dc; color: var(--amber); }

@media (max-width: 700px) {
  .news-entry__head { flex-direction: column; gap: 2px; }
  .news-list li { flex-direction: column; gap: 3px; }
}

/* A hint that is warning about a consequence rather than describing behaviour. */
.recur-hint--warn { color: var(--amber); font-weight: 700; }

/* ---- event type: shape, not colour ----
   Hue on the calendar means "who", so type is carried by an icon and, for
   leave, by a dashed edge — a texture difference that cannot collide with it. */
.chip-type { display: inline-flex; vertical-align: middle; margin-right: 3px; opacity: 0.7; }
.event-chip--leave { border-left-style: dashed; }
.event-chip--leave .chip-title { font-style: italic; }

.type-key {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  margin: 0 0 14px; font-size: 11px; font-weight: 700; color: var(--sub);
}
.type-key__item { display: inline-flex; align-items: center; gap: 5px; }

#event-type-hint { display: flex; align-items: center; gap: 5px; }
