/* ===========================================
   METAR Modal styling
   =========================================== */
.metar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem 1rem;
}
.metar-grid label {
  display: block;
  font-size: 0.75rem;
  color: var(--bs-secondary);
}
.metar-grid div {
  font-weight: 600;
  font-size: 0.9rem;
}

.metar-cloud-graph {
  background: var(--bs-light);
  border-radius: 6px;
  padding: 6px;
  min-height: 50px;
}
.theme-dark .metar-cloud-graph {
  background: #222;
  color: #ccc;
}
.cloud-layer {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin: 2px 0;
  padding: 4px 6px;
}
.theme-dark .cloud-layer {
  background: rgba(255, 255, 255, 0.1);
}

/* Category colors */
.cat-VFR { background-color: #28a745 !important; }
.cat-MVFR { background-color: #0080f0 !important; }
.cat-IFR { background-color: #dc3545 !important; }
.cat-LIFR { background-color: #9722ce !important; }
