:root {
  --bg: #090d1a;
  --fg: #e8efff;
  --muted: #9bb6d6;
  --card: #111f3b;
  --accent: #3ecfdf;
  --accent-2: #8f5afe;
  --error: #ff6f9e;
  --border: rgba(220, 230, 255, 0.15);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: #000;
  color: var(--fg);
  font:
    16px/1.5 system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

#forecastTable24,
#forecastTableSummary {
  background: #000;
}

#forecastTable24 th,
#forecastTable24 td,
#forecastTableSummary th,
#forecastTableSummary td {
  background: transparent;
}

.container {
  max-width: 1400px;
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 24px 18px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #0b0f19, var(--card));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.leaflet-container .leaflet-control-zoom,
.leaflet-container .leaflet-control-attribution {
  z-index: 1000 !important;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  overflow: visible;
  min-width: 0;
  text-align: center;
}

.logo-title > div {
  min-width: 0;
}

.app-logo {
  width: auto;
  height: 100%;
  max-height: 105px;
  object-fit: contain;
  display: block;
  transform: scale(1.25);
  transform-origin: left center;
  flex-shrink: 0;
  margin-right: 16px;
}

.current-grid .pane h2,
.current-grid .pane h3 {
  color: #d8e6ff;
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.time-pane,
.weather-pane,
.map-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.time-pane .time,
.weather-pane .weather-current-grid,
.map-pane #map {
  width: 100%;
}

.current-grid {
  align-items: center;
}

#forecastTableSummary,
#forecastTable24 {
  table-layout: fixed;
}

#forecastTableSummary th,
#forecastTableSummary td,
#forecastTable24 th,
#forecastTable24 td {
  min-width: 0;
}

.gust-scale-wrapper {
  margin-top: 30px;
  width: 100%;
  position: relative;
}

.settings-group {
  display: grid;
  gap: 26px;
}

.gust-scale-caption {
  margin-bottom: 10px;
  color: var(--fg);
  font-size: 1.2rem;
  font-weight: 700;
}

.gust-scale-wrapper {
  margin-top: 16px;
  margin-bottom: 16px;
}

.gust-scale-bar {
  position: relative;
  height: 30px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gust-scale-fill {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.gust-scale-input-area {
  position: absolute;
  left: 0;
  right: 0;
  top: -72px;
  height: 52px;
  pointer-events: none;
}

.gust-scale-input-area.bottom {
  top: 38px;
}

.gust-scale-input-wrapper {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding-top: 0;
  pointer-events: auto;
  z-index: 10;
}

.gust-scale-input-wrapper .gust-scale-arrow {
  order: -1;
  color: var(--fg);
  font-size: 1.1rem;
  line-height: 1;
  margin-bottom: 0;
}

.gust-scale-input-wrapper label {
  order: 0;
}

.gust-scale-input-wrapper input {
  text-align: center;
  width: 64px;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 3px 5px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0e1b2f;
  color: var(--fg);
}

.scale-ends {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.scale-ends span {
  box-sizing: border-box;
  min-width: 30px;
  width: 30px;
  text-align: center;
  font-weight: 700;
}

.scale-zero.hidden {
  display: none;
}

.leaflet-container .leaflet-control-zoom,
.leaflet-container .leaflet-control-attribution {
  z-index: 2000;
}

.scale-ends {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.scale-ends span {
  min-width: 30px;
  text-align: center;
}

.gust-scale-input-wrapper.caution label {
  color: #ff9500;
}

.gust-scale-input-wrapper.alarm label {
  color: #007bff;
}

#minTempCautionInputWrapper label,
#maxTempCautionInputWrapper label {
  color: #ff9500;
}

#minTempAlarmInputWrapper label {
  color: #1e40af;
}

#maxTempAlarmInputWrapper label {
  color: #ff0000;
}

.threshold-status {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: #bfcffd;
  margin: 8px 0 2px;
}

.scale-ends {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.scale-color-explanation {
  font-size: 0.92rem;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #dce9ff;
  text-align: center;
}

.threshold-legend.center {
  text-align: center;
  font-weight: 600;
}

.threshold-legend.center span.legend-alarm-cold {
  color: rgba(30, 58, 138, 1);
}

.threshold-legend.center span.legend-caution-cold {
  color: rgba(135, 206, 250, 1);
}

.threshold-legend.center span.legend-normal {
  color: #ffffff;
}

.threshold-legend.center span.legend-warning {
  color: rgba(255, 165, 0, 1);
}

.threshold-legend.center span.legend-alarm {
  color: rgba(255, 0, 0, 1);
}

.threshold-legend.center {
  text-align: center;
  font-weight: 600;
}

.threshold-status.bottom {
  margin-top: 6px;
}

.gust-scale-input-wrapper label {
  color: var(--fg);
  font-size: 0.78rem;
  text-align: center;
  white-space: nowrap;
}

.gust-scale-input-wrapper input {
  width: 62px;
  font-size: 0.84rem;
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0e1b2f;
  color: var(--fg);
}

.gust-scale-arrow {
  color: var(--fg);
  font-size: 1.1rem;
  line-height: 1;
}

.gust-scale-marker {
  position: absolute;
  top: 0;
  width: 3px;
  height: 34px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  z-index: 2;
}

.gust-scale-tips {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--muted);
}

.gust-scale-tips span {
  flex: 1;
  text-align: center;
}

.title-subtitle {
  margin: 0;
}

.app-header h1,
.app-header .title-subtitle {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-map-row,
.time-weather-row,
.grid-2x2,
.current-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.current-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.location-pane,
.map-pane,
.time-pane,
.weather-pane {
  min-width: 0;
}

@media (min-width: 900px) {
  .container {
    grid-template-columns: 1fr 1fr;
  }
  .container .card {
    margin: 0;
  }
  .card.full-width {
    grid-column: 1 / -1;
  }
  .grid-2x2 {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .grid-2x2 .pane,
  .current-grid .pane {
    width: 100%;
  }
  .current-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
  }
  .current-grid {
    align-items: center;
  }
  .current-grid h2 {
    grid-column: 1 / -1;
    margin: 0 0 0.8rem;
    text-align: center;
  }
  .current-grid .pane h3,
  .current-grid .pane h2 {
    margin-top: 0;
    text-align: center;
  }
  .current-grid .pane {
    min-height: 1px;
  }
  .current-grid .map-pane {
    display: flex;
    flex-direction: column;
  }
  .current-grid .map-pane #map {
    flex: 1;
    min-height: 230px;
    width: 100%;
  }
  .current-grid .current-left {
    display: block;
  }
  .map-pane {
    width: 100%;
  }
  .location-pane {
    width: 100%;
  }
  .time-pane,
  .weather-pane {
    width: 100%;
  }
}
h1,
h2,
h3 {
  color: #d8e6ff;
  text-shadow: 0 1px 8px rgba(35, 63, 124, 0.65);
}

.app-header h1,
.app-header .title-subtitle {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

h1 {
  font-size: 2rem;
  margin: 0 0 4px;
}

h2 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}

h3 {
  font-size: 1rem;
  margin: 0.8rem 0 4px;
  color: #a6bdfa;
}

.subtle {
  color: var(--muted);
  margin: 0 0 24px;
}

.card {
  background: linear-gradient(180deg, #0b0f19, var(--card));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  margin: 16px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.card h2 {
  font-size: 1.5rem;
  color: #9fc7ff;
  text-align: left;
  font-weight: 700;
  margin-bottom: 12px;
}

.current-grid h2 {
  font-size: 1.7rem;
  text-align: left;
}

#forecastSummaryHeading {
  font-size: 1.5rem;
  color: #9fc7ff;
  text-align: left;
  margin-top: 20px;
}

.status {
  color: var(--muted);
}

.wx-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.weather-current-grid {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr);
  gap: 1.2rem;
  align-items: center;
  min-height: 130px;
}

.wx-alerts-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 2px solid rgba(255, 176, 77, 0.7);
  background: rgba(120, 65, 20, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 176, 77, 0.25) inset;
}

.wx-alerts-banner .wx-alert-icon {
  font-size: 1.7rem;
  line-height: 1;
}

.wx-alerts-banner strong {
  color: #ffe2aa;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wx-alerts-banner #wxAlerts {
  font-size: 1.16rem;
  font-weight: 800;
  color: #fff;
}

.wx-alerts-banner.no-alert {
  border-color: rgba(126, 200, 227, 0.45);
  background: rgba(30, 80, 100, 0.2);
  box-shadow: none;
}

.wx-alerts-banner.no-alert .wx-alert-icon {
  opacity: 0.65;
}

.wx-alerts-wide {
  width: 100%;
}

.today-solar-forecast {
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  margin: 8px 0 12px;
  background: rgba(30, 80, 100, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(126, 200, 227, 0.28);
}

.today-solar-forecast strong {
  color: #a5b4ff;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}

.today-solar-forecast-value {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
}

.today-solar-forecast-value.solar-cell {
  .legend-now-marker {
    color: rgba(255, 175, 175, 0.95);
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .legend-historical {
    color: rgba(200, 220, 250, 0.9);
  }
  background: transparent !important;
  box-shadow: none !important;
  text-transform: none;
  font-size: 0.95rem;
}

.today-solar-forecast-value .solar-label {
  display: block;
  font-size: 1.65rem !important;
  font-weight: 900 !important;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

.today-solar-forecast-value .solar-value {
  display: block;
  font-size: 0.82rem !important;
  letter-spacing: 0.03em;
}

.weather-current-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.35rem;
}

.wx-icon-pane {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.weather-current-details > div {
  margin-bottom: 0;
}

.weather-current-details strong {
  color: #a5b4ff;
  font-size: 0.8rem;
  display: block;
  letter-spacing: 0.04em;
}

.weather-current-details span {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

#wxSolar {
  color: #ffd477;
}

.wx-icon {
  font-size: 5rem;
  line-height: 1;
}

.wx-icon-label {
  color: var(--fg);
  font-weight: 600;
}

.data {
  margin-top: 8px;
}
.note {
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.95rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.card .note {
  margin-left: 0;
  margin-right: 0;
}

footer {
  width: 100%;
  max-width: 100%;
}

footer .small-text,
footer .final-note {
  max-width: 100%;
  width: 100%;
}

.forecast-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.forecast-table th,
.forecast-table td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  word-break: break-word;
}

#forecastTableSummary th,
#forecastTableSummary td {
  font-size: 0.9em;
  padding: 10px;
}

.forecast-table th {
  color: var(--muted);
}

#forecastTableSummary td {
  text-align: center;
  vertical-align: middle;
}

.wind-speed-line,
.wind-direction-line {
  display: block;
}

.wind-speed-line {
  font-weight: 700;
}

.wind-direction-line {
  font-size: 0.85rem;
  color: var(--muted);
}

.card .note {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.forecast-table .condition-icon {
  font-size: 2.6rem;
  display: inline-block;
  line-height: 1;
}

#forecastTable24 tbody .day-row th:first-child {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
  font-weight: 600;
}

#forecastTable24 tbody .day-row th:not(:first-child) {
  background: transparent;
  color: inherit;
  font-weight: 600;
}

.forecast-table td {
  font-variant-numeric: tabular-nums;
}

#forecastTable24 th,
#forecastTable24 td {
  font-size: 0.9em;
}

#forecastTable24 .forecast-day-row td,
#forecastTable24 .forecast-day-row th {
  text-align: center;
  background: transparent;
  color: inherit;
}

#forecastTable24 thead th.time-day {
  background-color: rgba(70, 130, 180, 0.7);
  color: #fff;
}

#forecastTable24 tbody td.time-day {
  background-color: rgba(70, 130, 180, 0.7);
  color: #fff;
}

#forecastTable24 thead th.time-twilight-morning {
  background-image: linear-gradient(
    to right,
    rgba(21, 26, 43, 0.9),
    rgba(70, 130, 180, 0.7)
  );
  color: #111;
}

#forecastTable24 tbody td.time-twilight-morning {
  background-image: linear-gradient(
    to right,
    rgba(21, 26, 43, 0.9),
    rgba(70, 130, 180, 0.7)
  );
  color: #fff;
}

#forecastTable24 thead th.time-twilight-evening {
  background-image: linear-gradient(
    to right,
    rgba(70, 130, 180, 0.7),
    rgba(21, 26, 43, 0.9)
  );
  color: #111;
}

#forecastTable24 tbody td.time-twilight-evening {
  background-image: linear-gradient(
    to right,
    rgba(70, 130, 180, 0.7),
    rgba(21, 26, 43, 0.9)
  );
  color: #fff;
}

#forecastTable24 thead th.time-night {
  background-color: rgba(21, 26, 43, 0.9);
  color: #fff;
}

#forecastTable24 tbody td.time-night {
  background-color: rgba(21, 26, 43, 0.9);
  color: #fff;
}

#forecastTable24 thead th,
#forecastTable24 thead th.time-day,
#forecastTable24 thead th.time-twilight-morning,
#forecastTable24 thead th.time-twilight-evening,
#forecastTable24 thead th.time-night {
  color: #fff !important;
}

#forecastTable24 .condition-icon {
  font-size: 1.6em;
  vertical-align: middle;
}

#forecast24SymbolRow .symbol-cell {
  white-space: normal;
  font-size: 1.6rem;
  padding: 8px;
  text-align: center;
}

#forecast24SymbolRow .sun-symbol {
  color: #ffd700;
}

#forecast24SymbolRow .moon-symbol {
  color: #ffffff;
}

#forecast24SymbolRow th.time-day,
#forecast24SymbolRow th.time-night,
#forecast24SymbolRow th.time-twilight-morning,
#forecast24SymbolRow th.time-twilight-evening {
  color: #fff;
}

#forecast24SymbolRow th.time-day {
  background-color: rgba(70, 130, 180, 0.7);
}

#forecast24SymbolRow th.time-twilight-morning {
  background-image: linear-gradient(
    to right,
    rgba(21, 26, 43, 0.9),
    rgba(70, 130, 180, 0.7)
  );
}

#forecast24SymbolRow th.time-twilight-evening {
  background-image: linear-gradient(
    to right,
    rgba(70, 130, 180, 0.7),
    rgba(21, 26, 43, 0.9)
  );
}

#forecast24SymbolRow th.time-night {
  background-color: rgba(21, 26, 43, 0.9);
}

#forecastTable24 .symbol-cell {
  white-space: nowrap;
  font-size: 1.3rem;
  padding: 10px;
}

#forecastTable24 thead tr#forecast24SymbolRow th,
#forecastTable24 thead tr#forecast24HeaderRow th {
  border: 1px solid var(--border) !important;
}

#forecastTable24 thead tr#forecast24SymbolRow th {
  border-bottom: none !important;
}

#forecastTable24 thead tr#forecast24HeaderRow th {
  border-top: none !important;
}

#forecastTable24 thead tr#forecast24SymbolRow th + th,
#forecastTable24 thead tr#forecast24HeaderRow th + th {
  border-left: none !important;
}
#forecastTable24 .historical-segment-cell {
  background: rgba(88, 116, 156, 0.28) !important;
  border-right: 1px solid rgba(180, 205, 240, 0.45) !important;
}
#forecastTable24 .historical-tag {
  color: rgba(212, 228, 255, 0.95);
  font-weight: 700;
}

#forecastTable24 .digits,
#forecastTable24 .unit {
  font-size: 1em;
}

#forecastTableSummary td:last-child {
  min-width: 132px;
  width: 132px;
  white-space: nowrap;
}

#forecastTableSummary th:last-child {
  min-width: 132px;
  width: 132px;
  white-space: nowrap;
}

#forecastTableSummary td.forecast-warning {
  background-color: rgba(255, 148, 28, 0.42) !important;
}

#forecastTableSummary td.forecast-alarm {
  background-color: rgba(235, 48, 48, 0.48) !important;
}

#forecastTableSummary td.forecast-caution-cold {
  background-color: rgba(72, 148, 255, 0.44) !important;
}

#forecastTableSummary td.forecast-alarm-cold {
  background-color: rgba(37, 100, 216, 0.58) !important;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.settings-grid label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-weight: 500;
}

.settings-grid input {
  width: 100%;
  max-width: 170px;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0e1b2f;
  color: var(--fg);
}

.group-wind {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}

.group-temp {
  border: 1px solid rgba(97, 115, 145, 0.2);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}

.settings-group-title {
  color: #dce9ff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.threshold-input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.threshold-input-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.threshold-input-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: #cfe2ff;
}

.threshold-input-grid input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(159, 199, 255, 0.35);
  background: rgba(10, 20, 36, 0.9);
  color: #e9f2ff;
  font-weight: 700;
}

.gust-scale-wrapper {
  margin-top: 22px;
  margin-bottom: 28px;
  width: 100%;
  overflow: visible;
  position: relative;
}

.gust-scale-caption {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.gust-scale-bar {
  position: relative;
  height: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gust-scale-fill {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.gust-scale-input-area {
  position: absolute;
  inset: auto 0 100% 0;
  bottom: 100%;
  height: 60px;
  pointer-events: none;
}

.gust-scale-input-wrapper {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  pointer-events: auto;
}

.gust-scale-input-wrapper label {
  color: var(--fg);
  font-size: 0.8rem;
  text-align: center;
}

.gust-scale-input-wrapper input {
  width: 64px;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 3px 5px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0e1b2f;
  color: var(--fg);
}

.gust-scale-arrow {
  color: var(--fg);
  font-size: 1.1rem;
  line-height: 1;
}

.gust-scale-marker {
  position: absolute;
  top: -5px;
  width: 3px;
  height: 28px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
}

.gust-scale-marker.caution {
  background-color: rgba(255, 165, 0, 1);
}

.gust-scale-marker.alarm {
  background-color: rgba(255, 0, 0, 1);
}

.gust-scale-tips {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.gust-scale-tips span {
  text-align: center;
  width: 33%;
  padding: 3px 4px;
  border-radius: 8px;
}
.gust-scale-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.78rem;
  color: #e8efff;
}

.gust-scale-legend .legend-part {
  flex: 1;
  text-align: center;
  border-radius: 999px;
  padding: 3px 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 6px;
}

.gust-scale-legend .legend-part.normal {
  background: rgba(155, 182, 214, 0.25);
  color: #9bb6d6;
}

.gust-scale-legend .legend-part.caution {
  background: rgba(255, 165, 0, 0.2);
  color: #ffaa00;
}

.gust-scale-legend .legend-part.alarm {
  background: rgba(255, 0, 0, 0.25);
  color: #ff9090;
}
#gustNormalLabel {
  color: #9bb6d6;
}

#gustCautionLabel {
  color: rgba(255, 165, 0, 1);
}

#gustAlarmLabel {
  color: rgba(255, 0, 0, 1);
}

#saveSettingsButton,
#resetSettingsButton {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 18px;
  min-width: 160px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

#saveSettingsButton {
  color: #10243e;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 5px 14px rgba(62, 207, 223, 0.35);
}

#saveSettingsButton:hover,
#saveSettingsButton:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(62, 207, 223, 0.45);
}

#resetSettingsButton {
  color: #10243e;
  background: linear-gradient(135deg, #ff4d4d, #c80000);
  box-shadow: 0 5px 14px rgba(255, 77, 77, 0.35);
}

#resetSettingsButton:hover,
#resetSettingsButton:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(255, 77, 77, 0.45);
}

.error {
  color: var(--error);
  margin-top: 10px;
}

#locationPermissionHelp {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(17, 31, 59, 0.6);
  text-align: left;
}

.location-help-title {
  color: var(--fg);
  margin-bottom: 4px;
}

.location-help-reason {
  margin: 4px 0 8px;
  color: var(--muted);
}

.location-help-steps {
  margin: 0;
  padding-left: 18px;
  color: var(--fg);
}

.location-help-steps li {
  margin: 4px 0;
}

#locationHelpChooser {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(17, 31, 59, 0.35);
  text-align: left;
}

.location-help-chooser-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-help-chooser-row label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.location-help-chooser-row select {
  min-width: 160px;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0e1b2f;
  color: var(--fg);
}

.location-help-chooser-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-help-chooser-actions button {
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #183059;
  color: var(--fg);
  cursor: pointer;
}

.location-help-chooser-actions button:hover,
.location-help-chooser-actions button:focus {
  background: #21417a;
}

.settings-actions {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

#saveSettingsButton {
  /* keep same vertical level as reset */
  margin-top: 0;
}

.hidden {
  display: none;
}

.time .clock {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffd966;
  text-shadow:
    0 0 8px rgba(255, 217, 102, 0.7),
    0 0 14px rgba(255, 157, 13, 0.45);
}
.time .tz {
  color: var(--muted);
  margin-top: 6px;
}
.wx-temp-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.wx-temp-value {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffd966;
  text-shadow:
    0 0 8px rgba(255, 217, 102, 0.7),
    0 0 14px rgba(255, 157, 13, 0.45);
}

.wx-feels-note {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

footer {
  margin-top: 28px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.35;
}

footer .small-text {
  margin: 4px auto;
  max-width: none;
  width: 100%;
}

footer .final-note {
  margin: 10px auto 0;
  font-weight: 600;
  color: var(--fg);
  width: 100%;
}

#releaseNote {
  width: 100%;
}

/* Map */
.map {
  width: 100%;
  height: 320px; /* adjust if you want a taller map */
  border-radius: 12px;
  margin-top: 12px;
  overflow: hidden;
}

#settingsSection .settings-box {
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}

#settingsSection .group-wind {
  border: 1px solid rgba(255, 255, 255, 0.15);
}

#settingsSection .group-temp {
  border: 1px solid rgba(97, 115, 145, 0.2);
}

.threshold-slider-rows {
  display: none;
}

.gust-scale-input-area {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}

.gust-scale-input-area.top .gust-scale-input-wrapper {
  top: 10px;
}

.gust-scale-input-area.bottom .gust-scale-input-wrapper {
  top: calc(100% - 10px);
}

.gust-scale-input-wrapper {
  position: absolute;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transform: translate(-50%, -50%);
  min-width: 70px;
}

.gust-scale-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}

.drag-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}

.drag-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

.gust-scale-arrow {
  font-size: 1.4rem;
  line-height: 1;
}

.threshold-display-box {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 28, 47, 0.9);
  color: var(--fg);
  font-size: 0.9rem;
  font-weight: 700;
  min-width: 52px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.solar-cell {
  font-weight: 700;
  padding: 12px 8px;
  border-radius: 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.85rem;
  background: transparent !important;
  box-shadow: none !important;
}

.solar-cell .solar-value {
  display: block;
  font-size: 0.8rem;
  margin-top: 2px;
}

.solar-cell .solar-label {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.solar-cell.solar-na {
  background: transparent !important;
  color: #9ab2cf;
}

.solar-cell.solar-poor {
  background: transparent !important;
  color: #5c7a9a;
}

.solar-cell.solar-fair {
  background: transparent !important;
  color: #7a3a00;
}

.solar-cell.solar-good {
  background: transparent !important;
  color: #c75a00;
}

.solar-cell.solar-very-good {
  background: transparent !important;
  color: #ff8c1c;
}

.solar-cell.solar-excellent {
  background: transparent !important;
  color: #fffaf2;
  text-shadow:
    0 0 8px rgba(255, 228, 190, 0.82),
    0 0 14px rgba(255, 180, 92, 0.46);
}

.forecast24-legend {
  margin-bottom: 8px;
  display: grid;
  gap: 6px;
}

.forecast24-legend .legend-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.legend-pill,
.legend-item,
.legend-solar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.legend-pill.legend-caution {
  background: rgba(255, 148, 28, 0.24);
  color: #ffd59b;
}

.legend-pill.legend-alarm {
  background: rgba(235, 48, 48, 0.27);
  color: #ffd4d4;
}

.legend-item {
  background: rgba(22, 39, 71, 0.75);
  color: #d8e8ff;
}

.legend-solar.poor {
  background: transparent;
  color: #5c7a9a;
}

.legend-solar.fair {
  background: transparent;
  color: #7a3a00;
}

.legend-solar.good {
  background: transparent;
  color: #c75a00;
}

.legend-solar.very-good {
  background: transparent;
  color: #ff8c1c;
}

.legend-solar.excellent {
  background: transparent;
  color: #fffaf2;
  text-shadow:
    0 0 8px rgba(255, 228, 190, 0.82),
    0 0 14px rgba(255, 180, 92, 0.46);
}

#forecastTable24 {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(160, 188, 228, 0.28);
}

#forecastTable24 th,
#forecastTable24 td {
  padding: 8px 6px;
}

#forecastTable24 thead th:first-child,
#forecastTable24 tbody th {
  background: rgba(8, 16, 32, 0.95);
  color: #d3e6ff;
  font-weight: 700;
  width: 108px;
  min-width: 108px;
  text-align: left;
  padding-left: 10px;
  letter-spacing: 0.02em;
}

#forecastTable24 thead #forecast24HeaderRow th {
  text-align: center;
}

#forecastTable24 .time-day-tag {
  display: block;
  color: #bad2f9;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

#forecastTable24 .time-range {
  display: block;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
}

#forecast24SymbolRow .symbol-cell {
  padding: 6px 4px;
}

#forecast24SymbolRow .risk-chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

#forecast24SymbolRow .risk-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  min-height: 21px;
}

#forecast24SymbolRow .risk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.45rem;
  line-height: 1;
}

.summary-risk-cell .risk-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-height: 21px;
}

.summary-risk-cell .risk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  line-height: 1;
}

.summary-risk-cell .risk-icon.risk-caution {
  background: rgba(255, 148, 28, 0.33);
}

.summary-risk-cell .risk-icon.risk-alarm {
  background: rgba(235, 48, 48, 0.4);
}

#forecast24SymbolRow .risk-icon.risk-caution {
  background: rgba(255, 148, 28, 0.33);
}

#forecast24SymbolRow .risk-icon.risk-alarm {
  background: rgba(235, 48, 48, 0.4);
}

#forecast24SymbolRow .segment-normal .risk-chip {
  background: rgba(76, 173, 108, 0.28);
  color: #d7ffe3;
}

#forecast24SymbolRow .segment-caution .risk-chip {
  background: rgba(255, 148, 28, 0.35);
  color: #ffe1b5;
}

#forecast24SymbolRow .segment-alarm .risk-chip {
  background: rgba(235, 48, 48, 0.43);
  color: #ffe0e0;
}

#forecastTable24 .forecast-weather-cell {
  min-width: 86px;
}

.wind-svg-icon {
  width: 1.6em;
  height: 1.1em;
  vertical-align: middle;
  display: inline-block;
}

.fog-svg-icon {
  width: 1em;
  height: 0.8em;
  vertical-align: middle;
  display: inline-block;
}

#forecastTable24 .condition-icon .fog-svg-icon,
#forecastTableSummary .condition-icon .fog-svg-icon {
  width: 1.05em;
  height: 0.84em;
}

.wx-icon .fog-svg-icon {
  width: 0.95em;
  height: 0.75em;
}

.summary-action-required {
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 0.97rem;
  line-height: 1.5;
  border-left: 4px solid;
}

.summary-action-alarm {
  background: rgba(235, 48, 48, 0.18);
  border-color: #eb3030;
  color: #ffd4d4;
}

.summary-action-caution {
  background: rgba(255, 148, 28, 0.18);
  border-color: #ff941c;
  color: #ffecc2;
}

.summary-action-none {
  background: rgba(40, 80, 40, 0.18);
  border-color: #4cae4c;
  color: #c2f0c2;

  .awning-warning {
    padding: 9px 14px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    border-left: 4px solid #7ec8e3;
    background: rgba(30, 80, 100, 0.2);
  }

  .awning-warning strong {
    color: #7ec8e3;
  }

  .awning-status {
    display: inline;
  }
  .awning-alarm {
    color: #ffa0a0;
  }
  .awning-caution {
    color: #ffd080;
  }
  .awning-safe {
    color: #90ee90;
  }
  .awning-insufficient {
    color: #ffd080;
  }

  .toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .toggle-label input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
  }
}

.lookahead-mini-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.lookahead-mini-table td {
  padding: 7px 8px !important;
  border-bottom: 1px solid rgba(220, 230, 255, 0.16);
  text-align: left !important;
  vertical-align: top;
}

.lookahead-mini-table .lookahead-day {
  width: 42%;
  color: #dbe8ff;
  font-weight: 700 !important;
  text-align: right !important;
  padding-right: 14px !important;
}

.lookahead-mini-table .lookahead-text {
  color: #d6e3fb;
  text-align: left !important;
}

.next24-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 12px;
}

.next24-box {
  border: 1px solid rgba(160, 188, 228, 0.25);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(11, 22, 42, 0.72);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.next24-value-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.next24-label {
  color: #b7ceef;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.next24-pill {
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.next24-ok {
  background: rgba(76, 173, 108, 0.35);
  color: #d7ffe3;
}

.next24-caution {
  background: rgba(255, 148, 28, 0.35);
  color: #ffe1b5;
}

.next24-alarm {
  background: rgba(235, 48, 48, 0.43);
  color: #ffe0e0;
}

.next24-solar-value {
  font-size: 1.06rem;
  font-weight: 800;
  color: #ffe9b8;
}

.next24-detail {
  font-size: 0.86rem;
  color: #c9d8ef;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.setting-inline-label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #d8e6ff;
}

#awningNotifyHoursBeforeDark {
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0e1b2f;
  color: #e8efff;
  padding: 8px 10px;
  font-size: 1rem;
}

#awningNotifyHoursBeforeDark:disabled {
  opacity: 0.5;
  background: #2a3344;
  color: #b5c2d6;
  cursor: not-allowed;
}

#awningNotifyHoursHelp.disabled {
  opacity: 0.55;
}

#forecastTableSummary .condition-icon {
  font-size: 2rem;
}

#forecastTable24 .forecast-weather-cell .condition-icon {
  display: block;
  font-size: 2.6rem;
  line-height: 1.15;
}

#forecastTable24 .forecast-weather-cell .condition-label {
  display: block;
  margin-top: 2px;
  font-size: 0.69rem;
  color: #d4e6ff;
  line-height: 1.25;
}

#forecastTable24 .forecast-weather-cell {
  background: transparent;
}

#forecastTable24 td.solar-cell {
  padding: 8px 5px;
  border-radius: 0;
  font-size: 0.72rem;
}

#forecastTable24 tbody td.solar-cell.time-day {
  background-color: rgba(70, 130, 180, 0.7) !important;
}

#forecastTable24 tbody td.solar-cell.time-twilight-morning {
  background-image: linear-gradient(
    to right,
    rgba(21, 26, 43, 0.9),
    rgba(70, 130, 180, 0.7)
  ) !important;
}

#forecastTable24 tbody td.solar-cell.time-twilight-evening {
  background-image: linear-gradient(
    to right,
    rgba(70, 130, 180, 0.7),
    rgba(21, 26, 43, 0.9)
  ) !important;
}

#forecastTable24 tbody td.solar-cell.time-night {
  background-color: rgba(21, 26, 43, 0.9) !important;
}

#forecastTable24 td.solar-cell .solar-label {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  line-height: 1.2;
}

#forecastTable24 td.solar-cell .solar-value {
  font-size: 0.68rem !important;
  line-height: 1.2;
}

#forecastTableSummary td.solar-cell .solar-label {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
}

#forecastTableSummary td.solar-cell .solar-value {
  font-size: 0.8rem !important;
}

#forecastTable24 td.solar-cell.solar-poor {
  color: #5c7a9a !important;
}

#forecastTable24 td.solar-cell.solar-fair {
  color: #7a3a00 !important;
}

#forecastTable24 td.solar-cell.solar-good {
  color: #c75a00 !important;
}

#forecastTable24 td.solar-cell.solar-very-good {
  color: #ff8c1c !important;
}

#forecastTable24 td.solar-cell.solar-excellent {
  color: #fffaf2 !important;
}

#forecastTable24 .wind-speed-line,
#forecastTable24 .wind-direction-line {
  font-size: 0.76rem;
  line-height: 1.25;
}

@media (max-width: 860px) {
  #forecastTable24 {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #forecastTable24 th,
  #forecastTable24 td {
    min-width: 76px;
    font-size: 0.8rem;
  }

  #forecastTable24 thead th:first-child,
  #forecastTable24 tbody th {
    position: sticky;
    left: 0;
    z-index: 2;
  }

  .next24-overview {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  .current-grid .time-pane {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
  }

  .current-grid .wx-alerts-wide {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    align-self: center;
  }

  .current-grid .weather-pane {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    justify-content: flex-start;
    align-items: stretch;
    align-self: stretch;
  }

  .current-grid .weather-pane #weatherData {
    width: 100%;
  }

  .current-grid .weather-pane .today-solar-forecast {
    margin-top: 0;
  }

  .current-grid .map-pane {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    justify-content: flex-start;
    align-items: stretch;
    align-self: stretch;
  }

  .current-grid .map-pane #map {
    margin-top: 0;
    min-height: 300px;
  }

  .next24-overview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .threshold-input-grid,
  .threshold-input-grid.two-col {
    grid-template-columns: 1fr;
  }
}

.hourly-chart-wrap {
  margin: 10px 0 14px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.hourly-forecast-chart {
  width: 100%;
  height: 240px;
  display: block;
}

.hourly-chart-legend {
  margin-top: 8px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.legend-line-temp,
.legend-bar-rain {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.legend-line-temp {
  width: 24px;
  height: 0;
  border-top: 3px solid #ff9f43;
}

.legend-bar-rain {
  width: 12px;
  height: 12px;
  background: rgba(62, 207, 223, 0.55);
  border: 1px solid rgba(62, 207, 223, 0.9);
}

/* YES/NO toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(100, 120, 160, 0.5);
  border-radius: 28px;
  transition: background 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.switch .slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #c0cfe0;
  border-radius: 50%;
  transition:
    transform 0.25s,
    background 0.25s;
}

.switch input:checked + .slider {
  background: rgba(46, 160, 80, 0.75);
}

.switch input:checked + .slider::before {
  transform: translateX(24px);
  background: #90ee90;
}

.toggle-value-label {
  font-size: 0.95rem;
  font-weight: 700;
  min-width: 36px;
  color: #90ee90;
}

/* Awning daylight preference layout */
.awning-daylight-setting {
  display: flex;
  flex-direction: column;
  gap: 8px;
  grid-column: 1 / -1;
}

.awning-daylight-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.awning-daylight-label {
  font-size: 0.88rem;
  color: #cfe2ff;
  flex: 1;
  min-width: 200px;
}

.setting-explanation {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Awning warning blocks (top-level scope) */
.awning-warning {
  padding: 9px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  border-left: 4px solid #7ec8e3;
  background: rgba(30, 80, 100, 0.2);
}

.awning-warning strong {
  color: #7ec8e3;
}

.awning-status {
  display: inline;
}

.awning-alarm {
  color: #ffa0a0;
}

.awning-caution {
  color: #ffd080;
}

.awning-safe {
  color: #90ee90;
}

.awning-insufficient {
  color: #ffd080;
}

.group-awning {
  border: 1px solid rgba(126, 200, 227, 0.25);
}
