/* Styles front & admin simples pour QuizMaster */

/* --- Frontend --- */
.quizmaster.quizmaster-quiz {
  max-width: 800px;
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.quizmaster h2 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.4em;
}

.quizmaster p.description {
  color: #666;
  margin-top: 0;
}

.quizmaster .quiz-question {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #efefef;
}

.quizmaster .quiz-question h4 {
  margin: 0 0 8px 0;
  font-size: 1em;
}

.quizmaster .quiz-question label {
  display: block;
  cursor: pointer;
  margin: 6px 0;
}

.quizmaster .quizmaster-submit {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  background: #0073aa;
  color: #fff;
  cursor: pointer;
}

.quizmaster .quizmaster-result {
  margin-top: 12px;
  padding: 12px;
  border-radius: 6px;
  background: #f5f5f5;
  min-height: 40px;
}

.quizmaster .quizmaster-error {
  color: red !important;
  margin-top: 8px !important;
  font-size: 0.9em !important;
  display: block !important;
  line-height: 1.2 !important;
}

/* --- Admin (metabox) --- */
.quizmaster-admin .qm-question {
  background: #fafafa;
  border: 1px solid #eee;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.quizmaster-admin .qm-option input[type="text"] {
  width: 45%;
  margin-right: 6px;
}

.quizmaster-admin .qm-option input[type="number"] {
  width: 80px;
  margin-right: 6px;
}

.quizmaster-admin .qm-score input,
.quizmaster-admin .qm-score textarea {
  vertical-align: middle;
}

/* Small responsive tweaks */
@media (max-width: 600px) {
  .quizmaster {
    padding: 12px;
  }
  .quizmaster-admin .qm-option input[type="text"] {
    width: 100%;
    display: block;
    margin-bottom: 6px;
  }
  .quizmaster-admin .qm-option input[type="number"] {
    width: 100%;
    display: block;
    margin-bottom: 6px;
  }
}