/* ==================================================
   INDEX & QUESTIONNAIRE STYLES (index-style.css)
   ================================================== */

/* Info Box */
.kolb-summary {
  font-size: 1rem;
  background-color: #e2f0fb;
  color: #111;
  padding: 1rem;
  border-left: 4px solid #2563eb;
  border-radius: 6px;
  margin-top: 25px;
  margin-bottom: 30px;
}

#intro-screen h2 {
    border-bottom: none;
    padding-bottom: 0;
}

/* Questionnaire Progress Bar */
.progress-container { margin-bottom: 20px; }
.progress-bar { width: 100%; background-color: #e2e8f0; border-radius: 8px; overflow: hidden; }
.progress-fill { height: 12px; width: 0%; background-color: #4f46e5; transition: width 0.4s ease; }
.progress-text { text-align: center; font-size: 0.9rem; color: #64748b; margin-top: 5px; margin-bottom: 0; }

/* Question Pairs */
.question-pair { margin-bottom: 25px; border: 1px solid #e2e8f0; padding: 15px; border-radius: 8px; background-color: #f8fafc; }
.question-pair legend { font-weight: bold; padding: 0 10px; color: #475569; }
.question-pair label { display: flex; align-items: flex-start; padding: 12px; margin: 8px 0; border-radius: 6px; cursor: pointer; border: 1px solid transparent; transition: background-color 0.2s; }
.question-pair label:hover { background-color: #eef2ff; }
.question-pair input[type="radio"] { margin-right: 12px; flex-shrink: 0; margin-top: 4px; }