/* alerts.css - For success, error, and info messages */

.alert {
  padding: 1rem;
  border-radius: var(--border-radius, 8px);
  margin-bottom: 1rem;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.alert-success {
  background: #e6f4ea;
  color: var(--success, #43a047);
}

.alert-danger {
  background: #fdecea;
  color: var(--danger, #e53935);
}

.alert-info {
  background: #e3f2fd;
  color: var(--primary, #1a73e8);
}
