body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Lato", sans-serif;
  background-color: white;
  background-image: url("/img/las1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  overflow-y: auto;
}

form {
  background: #fff;
  margin-top: 4vh;
  margin-bottom: 7vh;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

h1 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

p {
  font-size: 1em;
  color: #555;
  margin: 20px 0 10px;
}

.feedback-table {
  width: 100%;
  border-collapse: collapse;
}

.feedback-table th,
.feedback-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

.feedback-table th {
  background-color: #f1f1f1;
  font-weight: bold;
}

/* Größere Radiobuttons */
input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: #007bff;
}

input[type="submit"] {
  width: 100%;
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s;
}

input[type="submit"]:hover {
  background-color: #0056b3;
}

.textarea-container {
  position: relative;
}

textarea {
  resize: vertical;
  width: 100%;
  padding: 15px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  color: #333;
}

#charCount {
  color: gray;
  font-size: 0.9em;
  text-align: right;
  margin-top: 5px;
  align-self: flex-end;
}

@media (max-width: 500px) {
  form {
    padding: 20px;
  }
}
