/* CoreTest Combined CSS */



form#coretest-form {

}

/* Frage-Blöcke */
.question {
  margin-bottom: 30px;
}
.question h3 {
  margin-bottom: 10px;
  color: #333;
}
.question-text {
  font-size: 1.1em;
  margin-bottom: 5px;
}
.question-hint {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 10px;
}
.option-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
}

.option-label input[type="radio"] {
  transform: scale(1.5);
  margin-bottom: 5px;
  margin-left: 1px;
}

.option-number {
  font-size: 1em;
  text-align: center;
  width: 100%;
}



/* Navigation */
.nav-buttons {
  margin-top: 15px;
}
.nav-buttons button {
  padding: 8px 15px;
  font-size: 1em;
  margin-right: 10px;
  cursor: pointer;
  display: inline-block;
}

/* Fortschrittsanzeige */
#progress-indicator {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}

/* Fortschrittsnachricht & Clear-Link */
#progress-msg {
  background: #ffffcc;
  padding: 10px;
  margin-top: 15px;
  text-align: center;
  font-size: 1em;
}
#clear-cache-link {
  font-size: 0.9em;
  color: #0066cc;
  text-decoration: none;
}
#clear-cache-link:hover {
  text-decoration: underline;
}

/* Frage-Kästchen Container */
#question-boxes {
  text-align: center;
  margin-top: 20px;
}

/* Einzelne Kästchen */
.question-box {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px;
  border: 1px solid #ccc;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  background: #eee;
  border-radius: 3px;
  font-weight: bold;
}

/* Beantwortet – pale green */
.question-box.answered {
  background: #ccffcc;
}

/* Unbeantwortet – default (grau) */
.question-box.unanswered {
  background: #eee;
}

/* Fehlend (unbeantwortet beim Submit) – pale orange */
.question-box.missing {
  background: #ffcc99;
}


/* Legende für die Antwortskala */
#scale-legend {
  text-align: center;
  margin-top: 15px;
  font-size: 0.8em;
  color: #333;
}
#scale-legend span {
  display: inline-block;
  margin: 0 10px;
}

.options{
    text-align: center;
}