.alert {
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-weight: 500;
}

.alert-error {
  background-color: #ffebee;
  color: var(--danger);
  border: 1px solid #ffcdd2;
}

.alert-success {
  background-color: #e8f5e9;
  color: var(--primary);
  border: 1px solid #c8e6c9;
}

.empty-state {
  text-align: center;
  padding: 40px;
  color: var(--gray);
}

.empty-state p {
  margin-top: 10px;
}