:root {
  --powder: #22c55e;
  --good: #22c55e;
  --fair: #eab308;
  --cold: #eab308;
  --icy: #eab308;
  --nogo: #dc2626;
}

body {
  background: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

/* Navbar customizations */
.navbar {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
}

#refreshBtn.spinning {
  animation: spin 1s linear infinite;
}

/* Locations bar */
.locations-bar {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.locations-bar-inner {
  margin-bottom: 0;
}

.resort-link {
  text-decoration: none;
  color: #1e40af;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.15s ease;
}

.resort-link:hover {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e3a8a;
}

.chart-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  scroll-margin-top: 20px;
  height: 100%;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.chart-header .resort-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.chart-header .resort-location {
  line-height: 1.2;
}

.precip-totals {
  display: flex;
  margin-left: 40px;
  margin-bottom: 4px;
  min-height: 22px;
}

.precip-day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.precip-day.historical {
  opacity: 0.45;
}

.snow-total {
  background: rgba(59, 130, 246, 0.9);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 2px 4px;
  border-radius: 3px;
}

.rain-total {
  background: #dc2626;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 2px 4px;
  border-radius: 3px;
}

.chart {
  position: relative;
  height: 200px;
  margin-bottom: 0.75rem;
}

.chart-bands {
  position: absolute;
  top: 0;
  left: 40px;
  right: 0;
  bottom: 0;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
}

.day-band {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.day-band:last-child {
  border-right: none;
}

.day-band.historical {
  opacity: 0.5;
}

.day-band.divider {
  border-right: 2px dashed #94a3b8;
}

.day-band.powder { background: rgba(34, 197, 94, 0.15); }
.day-band.heavy-snow {
  animation: snow-flash 1.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.snow-badge-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}

.snow-flakes {
  font-size: 2rem;
  color: #3b82f6;
  text-shadow: 0 0 3px #93c5fd;
  line-height: 1;
}

.day-band.heavy-snow .snow-flakes,
.day-band.heavy-snow .snow-total,
.precip-day.heavy-snow .snow-flakes,
.precip-day.heavy-snow .snow-total {
  animation: snow-element-flash 1.5s ease-in-out infinite;
}

@keyframes snow-flash {
  0%, 100% { background: rgba(59, 130, 246, 0.15); }
  50% { background: rgba(59, 130, 246, 0.35); }
}

@keyframes snow-element-flash {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.day-band.good { background: rgba(34, 197, 94, 0.15); }
.day-band.fair { background: rgba(234, 179, 8, 0.15); }
.day-band.cold { background: rgba(234, 179, 8, 0.15); }
.day-band.icy { background: rgba(234, 179, 8, 0.15); }
.day-band.nogo { background: rgba(220, 38, 38, 0.15); }

.y-axis {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}

.y-label {
  font-size: 0.6rem;
  color: #94a3b8;
  text-align: right;
  padding-right: 6px;
}

.chart-lines {
  position: absolute;
  top: 0;
  left: 40px;
  right: 0;
  bottom: 0;
}

.chart-lines svg {
  width: 100%;
  height: 100%;
}

.temp-line-high {
  fill: none;
  stroke: #f97316;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.temp-line-low {
  fill: none;
  stroke: #3b82f6;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.precip-line {
  fill: none;
  stroke: #8b5cf6;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.freezing-line {
  stroke: #0ea5e9;
  stroke-width: 1.5;
  stroke-dasharray: 5, 3;
}

.data-points {
  position: absolute;
  top: 0;
  left: 40px;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.data-point {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.data-point.high { background: #ef4444; }
.data-point.low { background: #3b82f6; }
.data-point.historical { opacity: 0.45; }

.temp-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f97316;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.freezing-label {
  position: absolute;
  left: -40px;
  width: 34px;
  font-size: 0.6rem;
  color: #0ea5e9;
  text-align: right;
  line-height: 1;
  margin-top: -0.3em;
}

.history-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    #94a3b8 0px,
    #94a3b8 4px,
    transparent 4px,
    transparent 8px
  );
}

.weather-details {
  display: flex;
  margin-left: 40px;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.weather-day {
  flex: 1;
  text-align: center;
  padding: 0 2px;
}

.weather-day.historical {
  opacity: 0.45;
}

.weather-day.divider {
  border-right: 2px dashed #cbd5e1;
}

.weather-day-label {
  font-size: 0.65rem;
  color: #94a3b8;
  margin-bottom: 2px;
  line-height: 1.1;
  text-align: center;
}

.weather-day-num {
  font-size: 0.55rem;
  color: #94a3b8;
}

.weather-temp {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.2;
}

.weather-high { color: #ef4444; }
.weather-low { color: #3b82f6; }

.weather-precip {
  font-size: 0.6rem;
  color: #8b5cf6;
  margin-bottom: 4px;
}

.weather-quality {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  margin: 0 auto;
}

.weather-quality.powder { background: var(--powder); }
.weather-quality.good { background: var(--good); }
.weather-quality.fair { background: var(--fair); }
.weather-quality.cold { background: var(--cold); }
.weather-quality.icy { background: var(--icy); }
.weather-quality.nogo { background: var(--nogo); }

.weather-icon {
  width: 32px;
  height: 32px;
  margin: -6px auto -4px;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}

.legend-color.powder { background: var(--powder); }
.legend-color.good { background: var(--good); }
.legend-color.fair { background: var(--fair); }
.legend-color.cold { background: var(--cold); }
.legend-color.icy { background: var(--icy); }
.legend-color.nogo { background: var(--nogo); }

.legend-line {
  width: 18px;
  height: 3px;
  border-radius: 2px;
  display: inline-block;
}

.legend-line.temp-high { background: #f97316; }
.legend-line.temp-low { background: #3b82f6; }
.legend-line.precip {
  background: #8b5cf6;
}
.legend-line.freezing {
  background: repeating-linear-gradient(
    90deg,
    #0ea5e9 0px,
    #0ea5e9 5px,
    transparent 5px,
    transparent 8px
  );
}

.legend-precip-box {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 600;
  color: white;
  display: inline-block;
}

.legend-precip-box.snow { background: rgba(59, 130, 246, 0.9); }
.legend-precip-box.rain { background: #dc2626; }

/* Legend bar */
.legend-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.legend-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.legend-group-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legend-items {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: #475569;
}

.legend-items > span {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.legend-divider {
  width: 1px;
  height: 36px;
  background: #e2e8f0;
}

@media (max-width: 767px) {
  .legend-bar {
    padding: 8px 12px;
    gap: 12px;
  }

  .legend-items {
    gap: 6px;
    font-size: 0.65rem;
  }

  .legend-divider {
    height: 28px;
  }

  .legend-group-label {
    font-size: 0.55rem;
  }
}

@media (max-width: 575.98px) {
  .legend-bar {
    display: none;
  }
}

/* Chart mode toggle */
.chart-mode-toggle {
  display: flex;
  gap: 2px;
  background: #f1f5f9;
  padding: 2px;
  border-radius: 5px;
}

.chart-mode-btn {
  padding: 3px 8px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 0.65rem;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.chart-mode-btn:hover {
  color: #334155;
}

.chart-mode-btn.active {
  background: white;
  color: #1e293b;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Legend bar icon for simple view */
.legend-bar-icon {
  display: inline-block;
  width: 6px;
  height: 14px;
  background: linear-gradient(to bottom, #ef4444 0%, #ef4444 25%, #d1d5db 25%, #d1d5db 75%, #3b82f6 75%, #3b82f6 100%);
  border-radius: 2px 2px 2px 2px;
  vertical-align: middle;
}

/* Temp range bars for simple chart view */
.temp-bar-high {
  fill: #ef4444;
}

.temp-bar-middle {
  fill: #d1d5db;
}

.temp-bar-low {
  fill: #3b82f6;
}

/* Toggle buttons */
.view-toggle {
  display: flex;
  gap: 4px;
  background: #f1f5f9;
  padding: 3px;
  border-radius: 6px;
}

.view-toggle-btn {
  padding: 4px 10px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.view-toggle-btn:hover {
  color: #334155;
}

.view-toggle-btn.active {
  background: white;
  color: #1e293b;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.debug-btn {
  padding: 4px 8px;
  border: 1px solid #e2e8f0;
  background: transparent;
  color: #94a3b8;
  font-size: 0.65rem;
  font-family: monospace;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  margin-left: 8px;
}

.debug-btn:hover {
  background: #f1f5f9;
  color: #64748b;
  border-color: #cbd5e1;
}

.debug-btn.copied {
  background: #22c55e;
  color: white;
  border-color: #22c55e;
}

/* Hourly view */
.hourly-container {
  overflow-x: auto;
  margin-left: 40px;
  margin-bottom: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.hourly-container::-webkit-scrollbar {
  height: 6px;
}

.hourly-container::-webkit-scrollbar-track {
  background: transparent;
}

.hourly-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.hourly-chart {
  display: flex;
  min-width: max-content;
  height: 200px;
  position: relative;
}

.hour-band {
  width: 36px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.hour-band:last-child {
  border-right: none;
}

.hour-band.night { background: #e5e7eb; }
.hour-band.powder { background: rgba(34, 197, 94, 0.15); }
.hour-band.good { background: rgba(34, 197, 94, 0.15); }
.hour-band.fair { background: rgba(234, 179, 8, 0.15); }
.hour-band.cold { background: rgba(234, 179, 8, 0.15); }
.hour-band.icy { background: rgba(234, 179, 8, 0.15); }
.hour-band.nogo { background: rgba(220, 38, 38, 0.15); }

.hour-band.day-start {
  border-left: 2px dashed #94a3b8;
}

.hour-band.historical {
  opacity: 0.5;
}

.hour-band.history-end {
  border-right: 2px dashed #94a3b8;
}

.hour-detail.historical {
  opacity: 0.5;
}

.hour-detail.history-end {
  border-right: 2px dashed #cbd5e1;
}

.hourly-precip-slot.historical {
  opacity: 0.5;
}

.hourly-details {
  display: flex;
  min-width: max-content;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.hour-detail {
  width: 36px;
  flex-shrink: 0;
  text-align: center;
  padding: 0 2px;
}

.hour-detail.day-start {
  border-left: 2px dashed #cbd5e1;
}

.hour-label {
  font-size: 0.55rem;
  color: #94a3b8;
  margin-bottom: 2px;
  line-height: 1.1;
}

.hour-day-label {
  font-size: 0.5rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 1px;
}

.hour-temp {
  font-size: 0.65rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.hour-precip {
  font-size: 0.55rem;
  color: #8b5cf6;
  margin-bottom: 2px;
}

.hour-wind {
  font-size: 0.55rem;
  color: #64748b;
  margin-bottom: 2px;
}

.hour-wind .wind-unit {
  font-size: 0.45rem;
  opacity: 0.7;
}

.hour-quality {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin: 0 auto;
}

.hour-quality.night { background: #9ca3af; }
.hour-quality.powder { background: var(--powder); }
.hour-quality.good { background: var(--good); }
.hour-quality.fair { background: var(--fair); }
.hour-quality.cold { background: var(--cold); }
.hour-quality.icy { background: var(--icy); }
.hour-quality.nogo { background: var(--nogo); }

.hour-icon {
  width: 28px;
  height: 28px;
  margin: -4px auto 0;
}

.hourly-precip-totals {
  display: flex;
  min-width: max-content;
  margin-bottom: 4px;
  min-height: 18px;
}

.hourly-precip-slot {
  width: 36px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.hourly-precip-slot .snow-total {
  font-size: 0.5rem;
  padding: 1px 3px;
}

.hourly-y-axis {
  position: absolute;
  left: 0;
  top: 22px;
  height: 200px;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
  background: white;
  z-index: 2;
}

.hourly-chart-wrapper {
  position: relative;
  height: 200px;
}

.hourly-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hourly-lines svg {
  width: 100%;
  height: 100%;
}

.search-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Suggested resorts for first-run */
.suggested-resorts {
  flex-wrap: nowrap;
}

.suggested-resort-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.suggested-resort-btn:hover {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.suggested-resort-btn .resort-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.8rem;
}

.suggested-resort-btn .resort-location {
  font-size: 0.6rem;
  color: #64748b;
  margin-top: 1px;
}

.or-divider {
  display: flex;
  align-items: center;
  color: #94a3b8;
  font-size: 0.8rem;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
  margin: 0 12px;
}

.loading-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e2e8f0;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* Refresh button */
.refresh-btn {
  padding: 2px 8px;
  font-size: 1rem;
  line-height: 1;
}

.refresh-btn.spinning {
  animation: spin 1s linear infinite;
}

.refresh-btn-mobile {
  display: none;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Score badges for mobile */
.score-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.score-badge.powder { background: var(--powder); }
.score-badge.good { background: var(--good); }
.score-badge.fair { background: var(--fair); }
.score-badge.cold { background: var(--cold); }
.score-badge.icy { background: var(--icy); }
.score-badge.nogo { background: var(--nogo); }

.weather-day .score-badge {
  margin-bottom: 4px;
}

/* Mobile compact view */
.mobile-forecast {
  display: none;
}

@media (max-width: 575.98px) {
  .chart, .precip-totals, .weather-details {
    display: none;
  }

  .debug-btn {
    display: none;
  }

  #locationsBar {
    display: none !important;
  }

  .resort-location {
    display: none;
  }

  .mobile-forecast {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
  }

  .mobile-day {
    flex: 1 1 calc(20% - 8px);
    min-width: 54px;
    text-align: center;
    padding: 6px 4px;
    background: #f8fafc;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
  }

  .mobile-day.historical {
    display: none;
  }

  .mobile-day.heavy-snow {
    animation: snow-flash 1.5s ease-in-out infinite;
  }

  .mobile-day.heavy-snow::before {
    content: '❄';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 1rem;
    color: white;
    text-shadow: 0 0 2px rgba(59, 130, 246, 0.5);
    animation: snow-element-flash 1.5s ease-in-out infinite;
    pointer-events: none;
  }

  .hour-band.historical,
  .hour-detail.historical,
  .hourly-precip-slot.historical {
    display: none;
  }

  .mobile-day .score-badge {
    display: block;
    margin-bottom: 4px;
  }

  .mobile-day-label {
    font-size: 0.65rem;
    color: #64748b;
    margin-bottom: 2px;
  }

  .mobile-day-num {
    font-size: 0.55rem;
    color: #94a3b8;
  }

  .mobile-icon {
    width: 28px;
    height: 28px;
    margin: 0 auto;
  }

  .mobile-temps {
    font-size: 0.7rem;
    font-weight: 600;
  }

  .mobile-temps .high { color: #ef4444; }
  .mobile-temps .low { color: #3b82f6; }

  .mobile-precip {
    font-size: 0.55rem;
    color: #8b5cf6;
  }

  .mobile-snow {
    font-size: 0.5rem;
    color: #3b82f6;
    font-weight: 600;
  }
}

/* Mobile landscape - reduce chart height to prevent overflow */
/* Add location sections */
.add-section-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.add-method-section {
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.add-method-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2e8f0;
}

.resort-search-results {
  max-height: 200px;
  overflow-y: auto;
}

.resort-state-list {
  margin-top: 8px;
}

.state-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.state-chip {
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 500;
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  color: #475569;
}

.state-chip:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.state-resort-list {
  max-height: 200px;
  overflow-y: auto;
}

.resort-result {
  transition: background 0.15s;
}

.resort-result:hover {
  background: #f1f5f9 !important;
}

/* Empty state card */
.empty-state-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 575.98px) {
  .empty-state-card {
    padding: 16px;
    border-radius: 8px;
  }

  .empty-state-card .suggested-resorts {
    flex-wrap: wrap;
  }

  .empty-state-card .suggested-resort-btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
  }

  .add-method-section {
    padding: 10px;
  }

  .add-method-header {
    font-size: 0.8rem;
  }

  .state-chips {
    max-height: 100px;
    overflow-y: auto;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .chart {
    height: 120px;
  }

  .hourly-chart {
    height: 120px;
  }

  .hourly-chart-wrapper {
    height: 120px;
  }

  .hourly-y-axis {
    height: 120px;
  }

  .chart-card {
    padding: 12px;
  }

  .chart-header {
    margin-bottom: 0.5rem;
  }

  .weather-details {
    padding-top: 0.5rem;
  }

  .weather-icon {
    width: 24px;
    height: 24px;
    margin: -4px auto -2px;
  }

  .weather-temp {
    font-size: 0.6rem;
  }

  .weather-precip {
    font-size: 0.55rem;
  }

  .score-badge {
    font-size: 0.5rem;
    padding: 1px 4px;
  }
}
