/* ==========================================================================
   FarmOS Mobile Console - Modern Simplified CSS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark:       #060913;
  --bg-card:       rgba(15, 23, 42, 0.6);
  --border-glass:  rgba(255, 255, 255, 0.08);
  
  --red:           #ef4444;
  --amber:         #f59e0b;
  --cyan:          #06b6d4;
  --emerald:       #10b981;
  --text-main:     #f8fafc;
  --text-muted:    #94a3b8;
  
  --font-sans:     'Outfit', -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #0f172a 0%, #060913 80%);
  color: var(--text-main);
  font-family: var(--font-sans);
  padding-bottom: 90px;
  display: flex;
  flex-direction: column;
}

/* Header */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(6, 9, 19, 0.8);
  border-bottom: 1px solid var(--border-glass);
}

#status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.status-left { display: flex; align-items: center; gap: 8px; }
.status-right { display: flex; align-items: center; }

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: background 0.3s;
}
.ind-syncing { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.ind-live    { background: var(--emerald); box-shadow: 0 0 8px var(--emerald); }
.ind-error   { background: var(--red); box-shadow: 0 0 8px var(--red); }

.sync-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  color: #fff;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}
.sync-toggle-btn.active {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
  border-color: rgba(16, 185, 129, 0.3);
}

#top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

#top-bar .brand {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#clock { font-size: 15px; font-weight: 700; color: #fff; }
#date-line { font-size: 10px; color: var(--text-muted); margin-top: 1px; }

/* Main layout */
.app-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.feed-section {
  scroll-margin-top: 110px;
}

/* Cards styling */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.refresh-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: #fff;
  padding: 4px 10px;
  font-size: 10px;
  cursor: pointer;
}

/* Weather styles */
.weather-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.wh-main { display: flex; align-items: center; gap: 12px; }
.wh-icon { font-size: 40px; }
.wh-temp { font-size: 32px; font-weight: 800; }
.wh-cond { font-size: 13px; color: var(--cyan); font-weight: 600; }
.wh-details { font-size: 12px; line-height: 1.5; text-align: right; }

.hourly-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 12px;
  scrollbar-width: none;
}
.hourly-scroll::-webkit-scrollbar { display: none; }
.hourly-item {
  flex-shrink: 0;
  width: 55px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  font-size: 11px;
}
.hi-time { color: var(--text-muted); }
.hi-icon { font-size: 16px; margin: 4px 0; }
.hi-temp { font-weight: 700; }
.hi-pop { font-size: 9px; color: var(--cyan); }

.daily-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.daily-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  font-size: 11px;
}
.di-day { color: var(--text-muted); font-weight: 600; }
.di-icon { font-size: 16px; margin: 4px 0; }
.di-hi { color: var(--amber); font-weight: 700; }
.di-lo { color: var(--text-muted); }

/* Solar Center-Hub Layout */
.solar-hub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.solar-node {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solar-node h3 {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.solar-node .value { font-size: 16px; font-weight: 800; color: #fff; }
.solar-node .sub { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.flow-arrow {
  font-size: 20px;
  color: var(--cyan);
  font-weight: 800;
  width: 24px;
  text-align: center;
}

/* Camera Gallery */
.cam-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  padding: 6px 12px;
  border-radius: 12px;
}
.cam-sel-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glass);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cam-view-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  background: #000;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cam-active-img { width: 100%; height: auto; display: block; max-height: 350px; object-fit: contain; }
.cam-status-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.7);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.thumb-gallery {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.thumb-gallery img {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  cursor: pointer;
}

/* Manuals Library */
.manual-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  margin-bottom: 6px;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
}
.manual-item:hover { background: rgba(255,255,255,0.05); }
.manual-icon { font-size: 18px; }
.manual-info { flex: 1; }
.manual-title { font-weight: 600; }
.manual-meta { font-size: 10px; color: var(--text-muted); margin-top: 1px; }

/* Floating Navigation Dock */
#tab-bar {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 450px;
  height: 54px;
  background: rgba(10, 15, 30, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 27px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 600;
  text-decoration: none;
  gap: 2px;
}
.tab-btn span { font-size: 16px; }
.tab-btn.active, .tab-btn:hover { color: var(--cyan); }

/* Modal */
#photo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#photo-modal img { max-width: 90%; max-height: 80vh; border-radius: 12px; }
#photo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Shimmer Skeletal Loading */
.shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.07) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
@keyframes shimmer { 0% { background-position: 200% 0 } 100% { background-position: -200% 0 } }

/* ==========================================================================
   DAYTIME / LIGHT THEME OVERRIDES
   ========================================================================== */
html.light-theme {
  --bg-dark:       #f1f5f9;
  --bg-card:       rgba(255, 255, 255, 0.85);
  --border-glass:  rgba(15, 23, 42, 0.08);
  --text-main:     #0f172a;
  --text-muted:    #64748b;
}

html.light-theme body {
  background: radial-gradient(circle at 50% 0%, #cbd5e1 0%, #f1f5f9 80%);
}

html.light-theme .header-wrapper {
  background: rgba(241, 245, 249, 0.85);
}

html.light-theme #top-bar .brand {
  background: linear-gradient(135deg, #0f172a 40%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.light-theme #clock,
html.light-theme .card-title,
html.light-theme .refresh-btn {
  color: var(--text-main);
}

html.light-theme #tab-bar {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

html.light-theme .manual-item {
  color: var(--text-main);
  background: rgba(0, 0, 0, 0.02);
}
html.light-theme .manual-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

html.light-theme .solar-node .value {
  color: var(--text-main);
}

html.light-theme .cam-sel-btn {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-main);
}

html.light-theme .cam-selector {
  background: rgba(0, 0, 0, 0.02);
}

html.light-theme .shimmer {
  background: linear-gradient(90deg, rgba(0,0,0,0.03) 25%, rgba(0,0,0,0.07) 50%, rgba(0,0,0,0.03) 75%);
}

html.light-theme #ai-search-equipment {
  background: rgba(0, 0, 0, 0.03) !important;
  color: var(--text-main) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

html.light-theme #ai-search-input {
  background: rgba(0, 0, 0, 0.03) !important;
  color: var(--text-main) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

html.light-theme #ai-search-output {
  background: rgba(255, 255, 255, 0.5) !important;
  color: var(--text-main) !important;
}

/* Theme Toggle Button Style */
#theme-toggle-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  transition: background 0.2s, transform 0.2s;
}
#theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.1);
}
html.light-theme #theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Top Reload Button */
#top-reload-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  transition: background 0.2s, transform 0.2s;
}
#top-reload-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.1);
}
html.light-theme #top-reload-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.spinning {
  animation: spin 0.8s linear infinite !important;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Solar Sync Source Segmented Switch (Hub vs Direct) */
.sync-source-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 2px;
  user-select: none;
  vertical-align: middle;
}
.sync-source-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.sync-source-btn:hover {
  color: #fff;
}
.sync-source-btn.active {
  background: var(--cyan);
  color: #000;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.4);
}
html.light-theme .sync-source-toggle {
  background: rgba(0, 0, 0, 0.05);
}
html.light-theme .sync-source-btn.active {
  background: #0284c7;
  color: #fff;
}

/* ==========================================================================
   Sun & Moon (Astronomy) Widget
   ========================================================================== */
.astro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
@media (max-width: 520px) {
  .astro-grid {
    grid-template-columns: 1fr;
  }
}
.astro-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html.light-theme .astro-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.astro-card-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.astro-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.astro-card-icon {
  font-size: 32px;
  line-height: 1;
}
.astro-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  padding: 4px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
html.light-theme .astro-stat-row {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.astro-forecast-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.astro-forecast-card {
  min-width: 92px;
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
html.light-theme .astro-forecast-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   Air Quality (AQI) Widget
   ========================================================================== */
.aqi-hero-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
}
html.light-theme .aqi-hero-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.aqi-score-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.aqi-score-val {
  font-size: 24px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--emerald);
  line-height: 1;
}
.aqi-score-label {
  font-size: 8px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
  letter-spacing: 0.5px;
}
.aqi-meta-container {
  flex: 1;
  min-width: 0;
}
.aqi-cat-badge {
  font-size: 13px;
  font-weight: 800;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.aqi-advice-text {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}
.aqi-spectrum-wrapper {
  margin-bottom: 12px;
  padding: 0 4px;
}
.aqi-spectrum-bar {
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #10b981 0%, #10b981 25%, #f59e0b 25%, #f59e0b 50%, #f97316 50%, #f97316 75%, #ef4444 75%, #ef4444 100%);
  margin-bottom: 6px;
}
.aqi-marker {
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  font-size: 9px;
  color: #fff;
  line-height: 1;
  transition: left 0.5s ease;
}
.aqi-spectrum-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.aqi-pollutants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 520px) {
  .aqi-pollutants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.aqi-pollutant-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px 10px;
}
html.light-theme .aqi-pollutant-item {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.aqi-p-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-bright);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aqi-p-type {
  font-size: 8px;
  color: var(--text-muted);
  font-weight: normal;
}
.aqi-p-val {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-bright);
  font-family: var(--font-mono);
  margin-top: 3px;
}
.aqi-p-aqi {
  font-size: 9px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-weight: 600;
  margin-top: 1px;
}

/* ─── UV INDEX STYLES (EPA) ──────────────────────────────────────────────── */
.uv-hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
}
html.light-theme .uv-hero-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.uv-score-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.uv-score-val {
  font-size: 24px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--emerald);
  line-height: 1;
}
.uv-score-label {
  font-size: 8px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
  letter-spacing: 0.5px;
}
.uv-meta-container {
  flex: 1;
  min-width: 0;
}
.uv-cat-badge {
  font-size: 13px;
  font-weight: 800;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.uv-advice-text {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}
.uv-spectrum-wrapper {
  margin-bottom: 12px;
  padding: 0 4px;
}
.uv-spectrum-bar {
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #10b981 0%, #10b981 25%, #f59e0b 25%, #f59e0b 50%, #f97316 50%, #f97316 67%, #ef4444 67%, #ef4444 90%, #8b5cf6 90%, #8b5cf6 100%);
  margin-bottom: 6px;
}
.uv-marker {
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  font-size: 9px;
  color: #fff;
  line-height: 1;
  transition: left 0.5s ease;
}
.uv-spectrum-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.uv-forecast-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}
.uv-forecast-scroll::-webkit-scrollbar {
  height: 4px;
}
.uv-forecast-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.uv-forecast-item {
  flex: 0 0 auto;
  min-width: 58px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
}
html.light-theme .uv-forecast-item {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}