*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0f0f12;
  --surface: #1a1a1e;
  --surface-2: #242428;
  --border: #2e2e33;
  --text: #e4e4e7;
  --text-muted: #71717a;
  --extreme: #ef4444;
  --severe: #f97316;
  --moderate: #eab308;
  --minor: #3b82f6;
  --unknown: #6b7280;
  --accent: #3b82f6;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  --mono: "SF Mono", "Cascadia Code", Consolas, monospace;
}
html { font-size: 15px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

/* ---------- landing ---------- */
.landing {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.landing-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, #1a1a2e 0%, #0f0f12 70%);
}
.landing-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(59,130,246,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(99,102,241,0.05) 0%, transparent 60%);
}
.landing-content {
  position: relative; z-index: 1;
  text-align: center;
  animation: fadeUp 0.8s ease-out;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.landing-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}
.landing-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.landing-title .brand-miehlav { color: #60a5fa; }
.landing-title .brand-wx { color: #93c5fd; }
.landing-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto; margin-right: auto;
}
.landing-enter {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.85rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-block;
}
.landing-enter:hover {
  background: #2563eb;
  transform: scale(1.03);
}
.landing-enter:active { transform: scale(0.97); }
.landing-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  opacity: 0.6;
}

/* ---------- nav bar ---------- */
.nav-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #141418 0%, #1a1a1e 50%, #121214 100%);
  padding: 0.55rem 1.5rem;
  position: sticky; top: 0; z-index: 15;
  flex-wrap: wrap;
}
.nav-brand {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 0.25rem;
}
.nav-link {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover { color: var(--text); }
.nav-link.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.nav-link.disabled {
  color: var(--text-muted);
  opacity: 0.45;
  cursor: not-allowed;
  user-select: none;
}
.nav-link.disabled:hover { color: var(--text-muted); }

/* ---------- placeholder pages ---------- */
.placeholder-page {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
  color: var(--text-muted);
}
.placeholder-icon { font-size: 3.5rem; margin-bottom: 1rem; opacity: 0.5; }
.placeholder-page h2 { font-size: 1.5rem; color: var(--text); margin-bottom: 0.5rem; }
.placeholder-page p { font-size: 0.9rem; }

/* ---------- nav status ---------- */
.nav-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav-status .dot { width: 7px; height: 7px; border-radius: 50%; }
.brand-miehlav { color: #60a5fa; }
.brand-wx { color: #93c5fd; }
.dot-live { background: #4caf8a; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.refresh-btn {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background 0.15s;
}
.refresh-btn:hover { background: #2e2e33; }
.refresh-btn:active { transform: scale(0.97); }

/* ---------- summary cards ---------- */
.summary-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
}
.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.summary-card .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}
.summary-card .count {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.sc-extreme .count { color: var(--extreme); }
.sc-severe  .count { color: var(--severe); }
.sc-moderate .count { color: var(--moderate); }
.sc-minor   .count { color: var(--minor); }
.sc-total   .count { color: var(--text); }

/* ---------- filters ---------- */
.controls {
  display: flex;
  gap: 0.75rem;
  padding: 0 1.5rem 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.controls input, .controls select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s;
}
.controls input::placeholder { color: var(--text-muted); }
.controls input:focus, .controls select:focus { border-color: var(--accent); }
.results-count { margin-left: auto; font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; }
.quick-btn {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.quick-btn:hover { color: var(--text); border-color: var(--text-muted); }
.quick-btn.active {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(59,130,246,0.12);
}

/* ---------- table ---------- */
.table-wrap {
  padding: 0 1.5rem 1.5rem;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}
thead th {
  text-align: left;
  padding: 0.65rem 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
thead th:hover { color: var(--text); }
thead th .sort-arrow { margin-left: 0.25rem; opacity: 0.4; }
thead th.sorted .sort-arrow { opacity: 1; color: var(--accent); }
tbody td {
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
tbody tr { cursor: pointer; transition: background 0.1s; }
tbody tr:hover { background: var(--surface-2); }
tbody tr:active { background: #2a2a2e; }
.td-event { font-weight: 600; max-width: 260px; }
.td-area { max-width: 220px; color: var(--text-muted); font-size: 0.8rem; }

/* severity badges */
.badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.badge-extreme  { background: rgba(239,68,68,0.18);  color: var(--extreme); }
.badge-severe   { background: rgba(249,115,22,0.18);  color: var(--severe); }
.badge-moderate { background: rgba(234,179,8,0.18);   color: var(--moderate); }
.badge-minor    { background: rgba(59,130,246,0.18);  color: var(--minor); }
.badge-unknown  { background: rgba(107,114,128,0.18); color: var(--unknown); }
.badge-expired  { background: rgba(107,114,128,0.10); color: var(--text-muted); }

/* ---------- loading & empty ---------- */
.loading-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 4rem 2rem; gap: 1rem;
}
.spinner {
  width: 38px; height: 38px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.error-banner {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--extreme);
  padding: 0.75rem 1.25rem;
  margin: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  display: none;
}
.error-banner.visible { display: block; }

/* ---------- modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 50; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 680px; width: 92vw; max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem;
  position: sticky; top: 0; background: var(--surface); z-index: 1;
}
.modal-title { font-size: 1.1rem; font-weight: 700; }
.modal-close {
  background: none; border: none; color: var(--text-muted);
  font-size: 1.4rem; cursor: pointer; padding: 0.15rem 0.4rem;
  line-height: 1; border-radius: 4px;
}
.modal-close:hover { color: var(--text); background: var(--surface-2); }
.modal-body { padding: 1.25rem 1.5rem 1.5rem; }
.modal-body .detail-row { display: flex; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.modal-body .detail-row dt {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-muted);
}
.modal-body .detail-row dd { font-weight: 500; }
.modal-section-title {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-muted); margin: 1.25rem 0 0.5rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}
.modal-section-title:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.descr-block {
  background: var(--surface-2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.84rem;
  white-space: pre-wrap;
  font-family: var(--font);
  line-height: 1.6;
  max-height: 300px;
  overflow-y: auto;
}

/* ---------- hazard cards (modal) ---------- */
.hazard-source {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 0.75rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.hazard-source strong { color: var(--text); }
.hazard-source-icon { font-size: 1rem; }

/* ---------- impact summary (IBW tags) ---------- */
.impact-summary {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  margin-bottom: 0.75rem;
}
.impact-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.81rem;
  line-height: 1.4;
}
.impact-row + .impact-row { border-top: 1px solid rgba(255,255,255,0.04); }
.impact-label {
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  min-width: 52px;
  flex-shrink: 0;
}
.impact-value { color: var(--text); }

.hazard-cards {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1rem;
}
.hazard-card {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.35;
  flex: 1 1 auto;
  min-width: 170px;
}
.hazard-icon { font-size: 1.2rem; flex-shrink: 0; }
.hazard-label {
  font-size: 0.67rem; text-transform: uppercase;
  letter-spacing: 0.05em; font-weight: 700;
  margin-bottom: 0.1rem;
}
.hazard-detail { font-weight: 500; }
.hazard-tornado { background: rgba(239,68,68,0.14);  border: 1px solid rgba(239,68,68,0.3); }
.hazard-tornado .hazard-label { color: var(--extreme); }
.hazard-wind  { background: rgba(249,115,22,0.12);  border: 1px solid rgba(249,115,22,0.25); }
.hazard-wind .hazard-label  { color: var(--severe); }
.hazard-hail  { background: rgba(59,130,246,0.12);  border: 1px solid rgba(59,130,246,0.25); }
.hazard-hail .hazard-label  { color: var(--minor); }
.hazard-motion { background: rgba(99,102,241,0.12);  border: 1px solid rgba(99,102,241,0.25); }
.hazard-motion .hazard-label { color: #818cf8; }
.hazard-headline { background: rgba(234,179,8,0.10); border: 1px solid rgba(234,179,8,0.25); }
.hazard-headline .hazard-label { color: var(--moderate); }

/* ---------- footer ---------- */
.footer {
  padding: 1rem 1.5rem 1.5rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer a { color: var(--accent); }

/* ---------- outlook ---------- */
.outlook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}
.outlook-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.outlook-card-header {
  padding: 1.25rem 1.25rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.outlook-day {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.outlook-card-meta {
  padding: 0 1.25rem 0.75rem;
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.outlook-card-body {
  padding: 0 1.25rem 1rem;
  flex: 1;
}
.outlook-summary {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.outlook-areas { margin-top: 0.5rem; }
.outlook-section-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.outlook-area-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  padding: 0.5rem 0.6rem;
  background: var(--surface-2);
  border-radius: 6px;
}
.outlook-area-badge {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.outlook-area-text {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.4;
}
.outlook-card-footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.outlook-thumb {
  max-height: 80px;
  border-radius: 4px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.outlook-link {
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.outlook-link:hover { text-decoration: underline; }

/* risk badges */
.risk-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.risk-high      { background: rgba(224,64,251,0.18);  color: #E040FB; }
.risk-moderate  { background: rgba(244,67,54,0.18);   color: #F44336; }
.risk-enhanced  { background: rgba(255,152,0,0.18);   color: #FF9800; }
.risk-slight    { background: rgba(255,215,64,0.18);  color: #FFD740; }
.risk-marginal  { background: rgba(76,175,80,0.18);   color: #4CAF50; }
.risk-general   { background: rgba(129,199,132,0.18); color: #81C784; }
.risk-none      { background: rgba(109,114,121,0.14); color: #6d7279; }

/* outlook area badge risk colors */
.outlook-area-badge.risk-high      { background: rgba(224,64,251,0.22);  color: #E040FB; }
.outlook-area-badge.risk-moderate  { background: rgba(244,67,54,0.22);   color: #F44336; }
.outlook-area-badge.risk-enhanced  { background: rgba(255,152,0,0.22);   color: #FF9800; }
.outlook-area-badge.risk-slight    { background: rgba(255,215,64,0.22);  color: #FFD740; }
.outlook-area-badge.risk-marginal  { background: rgba(76,175,80,0.22);   color: #4CAF50; }
.outlook-area-badge.risk-general   { background: rgba(129,199,132,0.22); color: #81C784; }
.outlook-area-badge.risk-none      { background: rgba(109,114,121,0.16); color: #6d7279; }

/* ---------- forecast ---------- */
.fc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem 0;
  flex-wrap: wrap;
}
.fc-location {
  font-size: 1.3rem;
  font-weight: 700;
}
.fc-search {
  display: flex;
  gap: 0.4rem;
}
.fc-search-wrap {
  position: relative;
}
.fc-search input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.85rem;
  outline: none;
  min-width: 220px;
  transition: border-color 0.15s;
}
.fc-search input::placeholder { color: var(--text-muted); }
.fc-search input:focus { border-color: var(--accent); }
.fc-search-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.fc-search-btn:hover { background: #2563eb; }

.fc-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0 0 8px 8px;
  margin-top: 2px;
  z-index: 20;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.fc-suggestions.open { display: block; }
.fc-suggest-item {
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  transition: background 0.1s;
}
.fc-suggest-item:last-child { border-bottom: none; }
.fc-suggest-item:hover,
.fc-suggest-item.active {
  background: var(--surface-2);
  color: var(--text);
}
.fc-suggest-item strong {
  color: var(--accent);
  font-weight: 700;
}

.fc-current {
  display: flex;
  gap: 2rem;
  padding: 1.25rem 1.5rem;
  margin: 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.current-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.current-emoji { font-size: 3.5rem; line-height: 1; }
.current-temp {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.current-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.current-details {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}
.current-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cd-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}
.cd-value {
  font-size: 0.95rem;
  font-weight: 600;
}
.current-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  width: 100%;
}

.fc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
  padding: 0 1.5rem 1.5rem;
}
.fc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.fc-card-now {
  border-color: var(--accent);
  background: rgba(59,130,246,0.06);
}
.fc-period {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.fc-emoji { font-size: 2.5rem; line-height: 1; }
.fc-temp {
  font-size: 1.4rem;
  font-weight: 700;
}
.fc-short {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.fc-wind {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.fc-precip {
  font-size: 0.72rem;
  color: var(--minor);
  font-weight: 600;
}
.fc-updated {
  padding: 0 1.5rem 1rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}
