/* app/assets/stylesheets/feedback.css */
.feedback-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, #007bff, #00ddeb);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.feedback-container h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.feedback-container p {
  font-size: 18px;
  color: #f0f8ff;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.field select,
.field textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 8px;
  box-sizing: border-box;
}

.field select option,
.field textarea::placeholder {
  color: #aaaaaa;
}

.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #ffeb3b;
  box-shadow: 0 0 5px rgba(255, 235, 59, 0.3);
}

.actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.clsBlueButton {
  background-color: #ff6f61;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.clsBlueButton:hover {
  background-color: #e55a4e;
}

.clsCancelButton {
  background-color: #6c757d;
}

.clsCancelButton:hover {
  background-color: #5a6268;
}

.clsFlash.notice {
  background-color: #d4edda;
  color: #28a745;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.clsFlash.alert {
  background-color: #f8d7da;
  color: #dc3545;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}
