/* feedback.css */
:root {
  --primary: #0070f3;
  --text-dark: #1f2937;
  --text-light: #ffffff;
  --bg-light: #f9fbfe;
  --shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  --radius: 12px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(to right, #e0f7fa, #ffffff);
  color: #333;
  line-height: 1.6;
}


.feedback-container {
  max-width: 600px;
  margin: 3rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feedback-container h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}

form label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

form select,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form textarea {
  height: 100px;
  resize: vertical;
}

.emoji-rating {
  display: flex;
  justify-content: space-around;
  margin-top: 0.5rem;
  font-size: 2rem;
}

.submit-btn {
  margin-top: 1.5rem;
  width: 100%;
  padding: 12px;
  background-color: #00c4a7;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #019b87;
}

#feedback-message {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: bold;
}


@media (max-width: 768px) {
  html {
    font-size: 90%;
  }
}