/**
 * Sky Backdrop CSS
 * Sophisticated sky rendering with weather effects
 * Used by sky-renderer.js for dynamic map backgrounds
 */

/* ═══════════════════ CSS VARIABLES ═══════════════════ */
:root {
  --sky-top: #020010;
  --sky-mid: #0a0030;
  --sky-bot: #1a0c55;
  --nebula-opacity: 0.35;
  --star-opacity: 1;
  --moon-opacity: 1;
  --moon-top: 8%;
  --moon-left: 88%;
  --sun-opacity: 0;
  --sun-top: -120px;
  --sun-left: 25%;
  --cloud-color: rgba(255,255,255,0.85);
  --cloud-shadow: rgba(180,180,200,0.4);
  --cloud-opacity: 0;
  --rain-opacity: 0;
  --horizon-color: rgba(15, 5, 40, 0.9);
  --horizon-mid: rgba(10, 5, 30, 0.4);
  --lightning-opacity: 0;
  --fog-opacity: 0;
  --snow-opacity: 0;
}

/* ═══════════════════ SKY BASE ═══════════════════ */
.sky-backdrop {
  position: fixed;
  left: 50%;
  top: -100vmax;
  width: 200vmax;
  height: 200vmax;
  z-index: 0;
  pointer-events: none;
  transform-origin: center center;
  /* No transition on transform to prevent flashing during pitch/bearing changes */
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sky-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(20, 10, 60, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(10, 20, 80, 0.4) 0%, transparent 50%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 45%, var(--sky-bot) 100%);
  transition: all 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════ CELESTIAL LAYER (COMPASS-STABLE) ═══════════════════ */
.celestial-layer {
  position: absolute;
  /* 3x wider than backdrop (600vmax) to support panoramic panning */
  width: 600vmax;
  height: 200vmax;
  left: -200vmax;  /* Center within 200vmax backdrop (middle third visible initially) */
  top: 0;
  transform-origin: center center;
  /* No transition on transform to prevent flashing during bearing changes */
  overflow: visible;
}

/* ═══════════════════ NEBULA ═══════════════════ */
.nebula-layer {
  position: absolute;
  inset: 0;
  opacity: var(--nebula-opacity);
  background:
    radial-gradient(ellipse 600px 300px at 15% 25%, rgba(80, 40, 120, 0.5), transparent),
    radial-gradient(ellipse 400px 500px at 75% 60%, rgba(20, 50, 120, 0.4), transparent),
    radial-gradient(ellipse 500px 200px at 50% 80%, rgba(100, 20, 80, 0.3), transparent);
  animation: nebulaShift 30s ease-in-out infinite alternate;
  transition: opacity 1.8s;
}

@keyframes nebulaShift {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(15deg); }
}

/* ═══════════════════ MILKY WAY ═══════════════════ */
.milky-way-layer {
  position: absolute;
  inset: 0;
  opacity: calc(0.08 * var(--star-opacity));
  background:
    radial-gradient(ellipse 100% 20% at 30% 40%, rgba(200,200,255,0.8), transparent),
    radial-gradient(ellipse 80% 15% at 50% 45%, rgba(180,180,240,0.5), transparent);
  /* Artistic rotation preserved, horizontal translation handled by parent celestial layer */
  transform: rotate(-20deg) scale(1.5);
  filter: blur(8px);
  transition: opacity 1.8s;
}

/* ═══════════════════ STARS ═══════════════════ */
.stars-wrap {
  position: absolute;
  inset: 0;
  opacity: var(--star-opacity);
  transition: opacity 1.8s;
  transform-origin: center center;
}

.stars-small,
.stars-medium,
.stars-large {
  position: absolute;
  inset: 0;
}

.stars-small {
  background-image:
    radial-gradient(1px 1px at 50px 80px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 150px 200px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 300px 50px, rgba(200,210,255,0.7), transparent),
    radial-gradient(1px 1px at 450px 300px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 80px 400px, rgba(255,240,220,0.6), transparent),
    radial-gradient(1px 1px at 550px 120px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 200px 350px, rgba(200,220,255,0.6), transparent),
    radial-gradient(1px 1px at 650px 250px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 100px 550px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 400px 500px, rgba(220,230,255,0.6), transparent),
    radial-gradient(1px 1px at 700px 400px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 250px 150px, rgba(255,245,230,0.5), transparent),
    radial-gradient(1px 1px at 500px 450px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 350px 600px, rgba(200,210,255,0.7), transparent),
    radial-gradient(1px 1px at 600px 550px, rgba(255,255,255,0.5), transparent);
  background-size: 700px 650px;
  animation: twinkle 4s ease-in-out infinite alternate;
}

.stars-medium {
  background-image:
    radial-gradient(1.5px 1.5px at 120px 180px, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.5px 1.5px at 380px 90px, rgba(200,220,255,0.8), transparent),
    radial-gradient(1.5px 1.5px at 520px 340px, rgba(255,245,220,0.9), transparent),
    radial-gradient(1.5px 1.5px at 60px 290px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 280px 470px, rgba(220,230,255,0.8), transparent),
    radial-gradient(1.5px 1.5px at 460px 160px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.5px 1.5px at 180px 510px, rgba(255,240,200,0.7), transparent),
    radial-gradient(1.5px 1.5px at 620px 80px, rgba(255,255,255,0.9), transparent);
  background-size: 800px 600px;
  animation: twinkle 6s ease-in-out infinite alternate-reverse;
}

.stars-large {
  background-image:
    radial-gradient(2px 2px at 200px 100px, rgba(255,255,255,1), transparent),
    radial-gradient(2.5px 2.5px at 450px 230px, rgba(200,220,255,0.95), transparent),
    radial-gradient(2px 2px at 100px 420px, rgba(255,240,200,1), transparent),
    radial-gradient(2.5px 2.5px at 600px 350px, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 320px 550px, rgba(220,230,255,0.95), transparent),
    radial-gradient(3px 3px at 550px 80px, rgba(255,200,180,0.85), transparent);
  background-size: 900px 650px;
  animation: twinkle 5s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0%   { opacity: 0.7; }
  50%  { opacity: 1; }
  100% { opacity: 0.8; }
}

/* ═══════════════════ FEATURE STARS ═══════════════════ */
.feature-stars-wrap {
  position: absolute;
  inset: 0;
  transform-origin: center center;
}

.feature-star {
  position: absolute;
  border-radius: 50%;
  background: white;
  opacity: var(--star-opacity);
  transition: opacity 1.8s;
}

.feature-star::before,
.feature-star::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.4);
}

.feature-star::before { width: 1px; height: 20px; }
.feature-star::after { width: 20px; height: 1px; }

.feature-star:nth-child(1) {
  width: 3px;
  height: 3px;
  top: 15%;
  left: 30%;
  box-shadow: 0 0 6px 2px rgba(200,220,255,0.6);
  animation: featureTwinkle 3s ease-in-out infinite;
}

.feature-star:nth-child(2) {
  width: 4px;
  height: 4px;
  top: 35%;
  left: 65%;
  box-shadow: 0 0 8px 3px rgba(255,240,200,0.6);
  animation: featureTwinkle 4s ease-in-out 1s infinite;
}

.feature-star:nth-child(3) {
  width: 3px;
  height: 3px;
  top: 55%;
  left: 20%;
  box-shadow: 0 0 6px 2px rgba(255,255,255,0.6);
  animation: featureTwinkle 3.5s ease-in-out 0.5s infinite;
}

.feature-star:nth-child(4) {
  width: 3px;
  height: 3px;
  top: 22%;
  left: 78%;
  box-shadow: 0 0 6px 2px rgba(200,210,255,0.6);
  animation: featureTwinkle 4.5s ease-in-out 2s infinite;
}

.feature-star:nth-child(5) {
  width: 2px;
  height: 2px;
  top: 70%;
  left: 50%;
  box-shadow: 0 0 5px 2px rgba(255,220,180,0.5);
  animation: featureTwinkle 3s ease-in-out 1.5s infinite;
}

@keyframes featureTwinkle {
  0%, 100% { opacity: calc(0.6 * var(--star-opacity)); transform: scale(0.8); }
  50%      { opacity: calc(1 * var(--star-opacity)); transform: scale(1.2); }
}

/* ═══════════════════ SHOOTING STARS ═══════════════════ */
.shooting-stars-wrap {
  position: absolute;
  inset: 0;
  opacity: var(--star-opacity);
  transition: opacity 1.8s;
}

.shooting-star {
  position: absolute;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.9), transparent);
  border-radius: 50%;
  opacity: 0;
  transform: rotate(-35deg);
}

.shooting-star::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 6px;
  height: 3px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 8px 2px rgba(200,220,255,0.8);
}

.shooting-star:nth-child(1) {
  top: 10%;
  left: 60%;
  animation: shoot 6s ease-in 2s infinite;
}

.shooting-star:nth-child(2) {
  top: 30%;
  left: 80%;
  width: 80px;
  transform: rotate(-40deg);
  animation: shoot 8s ease-in 5s infinite;
}

.shooting-star:nth-child(3) {
  top: 5%;
  left: 35%;
  width: 100px;
  transform: rotate(-30deg);
  animation: shoot 10s ease-in 8s infinite;
}

@keyframes shoot {
  0%  { opacity: 0; transform: rotate(-35deg) translateX(0); }
  2%  { opacity: 1; }
  6%  { opacity: 1; transform: rotate(-35deg) translateX(-300px); }
  8%  { opacity: 0; transform: rotate(-35deg) translateX(-400px); }
  100%{ opacity: 0; }
}

/* ═══════════════════ MOON ═══════════════════ */
.moon {
  position: absolute;
  top: var(--moon-top);
  left: var(--moon-left);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5f0e8, #d4c9a8 60%, #b0a080 100%);
  box-shadow: 0 0 20px rgba(255,245,220,0.3), 0 0 60px rgba(255,245,220,0.15), 0 0 120px rgba(255,245,220,0.08), inset -8px -4px 12px rgba(80,60,30,0.25);
  animation: moonGlow 8s ease-in-out infinite alternate;
  opacity: var(--moon-opacity);
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  /* Center the element on its calculated position (not top-left corner) */
  transform: translate(-50%, -50%);
}

.moon::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 25%;
  width: 15px;
  height: 12px;
  border-radius: 50%;
  background: rgba(160,140,100,0.25);
  box-shadow: 22px 8px 0 4px rgba(160,140,100,0.15), 8px 25px 0 2px rgba(160,140,100,0.2), 30px 28px 0 6px rgba(160,140,100,0.12);
}

@keyframes moonGlow {
  0%   { box-shadow: 0 0 20px rgba(255,245,220,0.3),0 0 60px rgba(255,245,220,0.15),0 0 120px rgba(255,245,220,0.08),inset -8px -4px 12px rgba(80,60,30,0.25); }
  100% { box-shadow: 0 0 30px rgba(255,245,220,0.4),0 0 80px rgba(255,245,220,0.2),0 0 150px rgba(255,245,220,0.1),inset -8px -4px 12px rgba(80,60,30,0.25); }
}

/* ═══════════════════ SUN ═══════════════════ */
.sun {
  position: absolute;
  top: var(--sun-top);
  left: var(--sun-left);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, #fff8e0, #ffd54f 40%, #ffb300 80%);
  box-shadow: 0 0 40px rgba(255,200,50,0.5), 0 0 100px rgba(255,180,30,0.3), 0 0 200px rgba(255,160,20,0.15);
  opacity: var(--sun-opacity);
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: sunPulse 6s ease-in-out infinite alternate;
  /* Center the element on its calculated position (not top-left corner) */
  transform: translate(-50%, -50%);
}

.sun::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,80,0.15) 30%, transparent 70%);
}

@keyframes sunPulse {
  0%   { box-shadow: 0 0 40px rgba(255,200,50,0.5),0 0 100px rgba(255,180,30,0.3),0 0 200px rgba(255,160,20,0.15); }
  100% { box-shadow: 0 0 60px rgba(255,200,50,0.6),0 0 130px rgba(255,180,30,0.35),0 0 250px rgba(255,160,20,0.2); }
}

/* ═══════════════════ CLOUDS ═══════════════════ */
.clouds-wrap {
  position: absolute;
  inset: 0;
  opacity: var(--cloud-opacity);
  transition: opacity 1.8s;
  pointer-events: none;
}

.cloud {
  position: absolute;
  background: var(--cloud-color);
  border-radius: 100px;
  filter: blur(1px);
  transition: background 1.8s, box-shadow 1.8s;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(100vw + 600px)); }
}

/* ═══════════════════ RAIN ═══════════════════ */
.rain-wrap {
  position: absolute;
  inset: 0;
  opacity: var(--rain-opacity);
  transition: opacity 1.8s;
  pointer-events: none;
  overflow: hidden;
}

.rain-column {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 100vh;
  overflow: hidden;
}

.raindrop {
  position: absolute;
  top: -20px;
  width: 2.5px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, rgba(200,210,235,0.75));
  border-radius: 0 0 2px 2px;
  box-shadow: 0 0 3px rgba(200,210,235,0.4);
  animation: fall linear infinite;
}

@keyframes fall {
  0%   { transform: translateY(-20px); }
  100% { transform: translateY(110vh); }
}

/* ═══════════════════ SNOW (MOVED TO OVERLAY) ═══════════════════ */
.snow-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -10px;
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  filter: blur(0.5px);
  box-shadow: 0 0 4px rgba(255,255,255,0.6), 0 0 8px rgba(255,255,255,0.3);
  animation: snowfall linear infinite;
}

@keyframes snowfall {
  0%   { transform: translateY(-10px) translateX(0) rotate(0deg); }
  25%  { transform: translateY(25vh) translateX(15px) rotate(90deg); }
  50%  { transform: translateY(50vh) translateX(-10px) rotate(180deg); }
  75%  { transform: translateY(75vh) translateX(20px) rotate(270deg); }
  100% { transform: translateY(110vh) translateX(-5px) rotate(360deg); }
}

/* ═══════════════════ LIGHTNING ═══════════════════ */
.lightning-layer {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255, var(--lightning-opacity));
  pointer-events: none;
  transition: none;
}

/* ═══════════════════ FOG (MOVED TO OVERLAY) ═══════════════════ */
.fog-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fog-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 40% at 20% 70%, rgba(200,200,210,0.3), transparent),
    radial-gradient(ellipse 100% 35% at 70% 65%, rgba(190,195,210,0.25), transparent),
    radial-gradient(ellipse 80% 30% at 50% 80%, rgba(200,200,215,0.3), transparent);
  animation: fogDrift 20s ease-in-out infinite alternate;
}

.fog-layer:nth-child(2) {
  background:
    radial-gradient(ellipse 90% 45% at 60% 75%, rgba(200,200,210,0.25), transparent),
    radial-gradient(ellipse 110% 35% at 30% 60%, rgba(190,195,210,0.2), transparent);
  animation: fogDrift 25s ease-in-out 5s infinite alternate-reverse;
}

@keyframes fogDrift {
  0%   { transform: translateX(-3%); }
  100% { transform: translateX(3%); }
}

/* ═══════════════════ HORIZON ═══════════════════ */
.horizon-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--horizon-color) 0%, var(--horizon-mid) 40%, transparent 100%);
  /* No transition on opacity to prevent flashing during pitch/bearing changes */
  transition: none;
}

/* ═══════════════════ RAIN OVERLAY (IN FRONT OF MAP) ═══════════════════ */
.rain-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: var(--rain-opacity);
  transition: opacity 1.8s;
  overflow: hidden;
}

/* ═══════════════════ SNOW OVERLAY (IN FRONT OF MAP) ═══════════════════ */
.snow-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: var(--snow-opacity);
  transition: opacity 1.8s;
  overflow: hidden;
}

/* ═══════════════════ FOG OVERLAY (IN FRONT OF MAP) ═══════════════════ */
.fog-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: var(--fog-opacity);
  transition: opacity 1.8s;
  overflow: hidden;
}

/* ═══════════════════ SKY DEBUG PANEL (ROOT USERS ONLY) ═══════════════════ */
.sky-debug-panel {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
}

.sky-debug-toggle {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

.sky-debug-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.sky-debug-content {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 320px;
  max-height: 600px;
  background: rgba(10, 10, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

.sky-debug-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sky-debug-header h3 {
  margin: 0;
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.sky-debug-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 1;
  transition: color 0.2s;
}

.sky-debug-close:hover {
  color: white;
}

.sky-debug-section {
  margin-bottom: 16px;
}

.sky-debug-section label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
}

.sky-debug-section h4 {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 600;
}

.sky-debug-section input[type="number"],
.sky-debug-section select {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
  color: white;
  font-size: 14px;
  transition: all 0.2s;
}

.sky-debug-section input[type="number"]:focus,
.sky-debug-section select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(163, 245, 234, 0.5);
}

.sky-debug-btn {
  width: 100%;
  background: rgba(163, 245, 234, 0.2);
  border: 1px solid rgba(163, 245, 234, 0.3);
  border-radius: 6px;
  padding: 10px 16px;
  color: #A3F5EA;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 8px;
}

.sky-debug-btn:hover {
  background: rgba(163, 245, 234, 0.3);
  border-color: rgba(163, 245, 234, 0.5);
}

.sky-debug-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.sky-debug-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.sky-debug-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sky-debug-preset {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 4px;
  color: white;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.sky-debug-preset:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.sky-debug-toggle-guide {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.sky-debug-toggle-guide:hover {
  background: rgba(255, 255, 255, 0.12);
}

.wmo-reference {
  margin-top: 12px;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
}

.wmo-table {
  width: 100%;
  border-collapse: collapse;
}

.wmo-table th {
  background: rgba(163, 245, 234, 0.15);
  color: #A3F5EA;
  padding: 8px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wmo-table td {
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wmo-table .wmo-code {
  color: #A3F5EA;
  font-weight: 600;
  width: 40px;
  text-align: center;
}

.sky-debug-status {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sky-debug-status small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}
