body {
  font-family: sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* --- Form stílusok --- */

.question-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-weight: bold;
  margin-bottom: 6px;
}

.form-row input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1.1em;
}

.form-row textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1.2em;
  min-height: 140px;
  resize: vertical;
}

/* --- Gomb --- */

.form-actions {
  text-align: center;
}

button {
  padding: 12px 25px;
  background: #007acc;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.2em;
  cursor: pointer;
}

button:hover {
  background: #005fa3;
}

/* --- Moderátor lista --- */

.question-item {
  background: #eee;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: grab
}

.question-text {
  cursor: default;
  font-size: 1.1em;
  line-height: 1.4em;
}

.delete {
  cursor: pointer;
  margin-left: 10px;
  font-size: 22px;
}


/* ----- flood oldal ----- */
h1 {
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 10px 15px;
  background: #007acc;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}


.footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  text-align: center;
  color: #666;
  font-size: 0.9em;
}

