/* ── ALERTS VIEW STYLES ── */
.alerts-list-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.alert-item-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
}

.alert-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--bg-color);
}

body.dark .alert-icon {
  background-color: rgba(255, 255, 255, 0.05);
}

.alert-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.alert-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.alert-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.time-stamp {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}
