/* Weather Alerts Styles
-------------------------------------------------- */
.alerts-container {
  background-color: #fff7ed;
  border-radius: var(--border-radius-md);
  margin-top: var(--spacing-md);
  overflow: hidden;
}

.alert-item {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid rgba(123, 165, 206, 0.18);
  border-left: 4px solid;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-sm);
  padding: var(--spacing-md);
  transition: all var(--transition-quick);
}

.alert-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.alert-item:last-child {
  margin-bottom: 0;
}

.alert-severe {
  border-color: #dc2626;
}

.alert-moderate {
  border-color: #f59e0b;
}

.alert-minor {
  border-color: #3b82f6;
}

.alert-info {
  border-color: #10b981;
}

.alert-header {
  align-items: center;
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.alert-icon {
  flex-shrink: 0;
  font-size: 20px;
}

.alert-title {
  color: var(--header-bg);
  flex-grow: 1;
  font-size: 17px;
  font-weight: 700;
}

.alert-time {
  color: var(--text-light);
  flex-shrink: 0;
  font-size: 12px;
  text-align: right;
}

.alert-content {
  color: #415469;
  font-size: 14px;
  line-height: 1.6;
}

.alert-areas,
.alert-severity,
.alert-description,
.alert-instruction {
  margin-bottom: var(--spacing-sm);
}

.alert-content strong {
  color: var(--header-bg);
  font-weight: 600;
}
