/* form-status.css - Feedback banner styles for all forms
   Generated by patch2.py */
.form-status {
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-align: center;
}
.form-status--success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-status--error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.form-status--info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Toggle button selected state */
.selected, .active {
  outline: 2px solid #c0392b;
  outline-offset: 2px;
  background-color: rgba(192, 57, 43, 0.08);
  border-radius: 6px;
}
