body {
  font-family: sans-serif;
  margin: 2rem;
  background: #f9f9f9;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
}

input, textarea {
  padding: 0.5rem;
  font-size: 1rem;
}

button {
  padding: 0.5rem;
  background: #0077cc;
  color: white;
  border: none;
  cursor: pointer;
}

#feedbackCards {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feedback-alert-card {
  border-left: 5px solid #ffc107;
  background: #fff8e1;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
