/* Local Weather Warnings */
.alerts-card {
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.05);
}

.alert-title {
  color: var(--color-ifr);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.alert-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-ifr);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--color-ifr);
  animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.alert-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hko-alert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--color-ifr);
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.hko-alert-item:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.hko-alert-icon-container {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px;
}

.hko-alert-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hko-alert-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hko-alert-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.025em;
}

.hko-alert-status {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 600;
}


/* ATIS Decoded Details */
.atis-card {
  padding: 0.75rem 0.5rem;
}

.atis-card .card-head-row,
.wx-card .card-head-row,
.radar-card .card-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}

.atis-card .card-title,
.wx-card .card-head-row .card-title,
.radar-card .card-head-row .card-title {
  margin-bottom: 0;
}

.atis-tabs {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  padding: 0.2rem;
  border-radius: 6px;
  height: 1.8rem;
  box-sizing: border-box;
}

.atis-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.atis-tab-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.atis-info-grid {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.atis-letter-box {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

