.alert {
  display: flex;              /* Flexbox for layout */
  align-items: center;
  padding: 12px;
  border-radius: 4px;
}

.alert-success {
  background-color: #e6fffa;
  color: #065f46;
}

.alert-error {
  background-color: #fee2e2;
  color: #7f1d1d;
}
