.msiq-quiz-container { max-width: 700px; margin: 0 auto; font-family: inherit; }
.msiq-quiz-step { animation: msiqFadeIn 0.3s ease; }
@keyframes msiqFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.msiq-quiz-step h2 { font-size: 1.4em; margin-bottom: 8px; text-align: center; }
.msiq-step-desc { text-align: center; color: #666; margin-bottom: 16px; font-size: 0.95em; }
.msiq-progress { height: 6px; background: #e0e0e0; border-radius: 3px; margin-bottom: 24px; overflow: hidden; }
.msiq-progress-bar { height: 100%; background: #0073aa; border-radius: 3px; transition: width 0.4s ease; }
.msiq-image-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; margin-bottom: 20px; }
.msiq-image-option { border: 3px solid #e0e0e0; border-radius: 10px; overflow: hidden; cursor: pointer; transition: all 0.2s ease; text-align: center; background: #fff; }
.msiq-image-option:hover { border-color: #0073aa; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.msiq-image-option.selected { border-color: #0073aa; background: #f0f7fc; box-shadow: 0 0 0 2px #0073aa; }
.msiq-image-option img { width: 100%; height: auto; object-fit: cover; }
.msiq-image-option .msiq-opt-label { padding: 8px; font-size: 0.9em; font-weight: 500; }
.msiq-text-fields { margin: 16px 0; }
.msiq-text-fields .msiq-tf { margin-bottom: 14px; }
.msiq-text-fields .msiq-tf label { display: block; font-weight: 600; margin-bottom: 4px; font-size: 0.95em; }
.msiq-text-fields .msiq-tf input,
.msiq-text-fields .msiq-tf textarea { width: 100%; padding: 10px 12px; border: 2px solid #ddd; border-radius: 6px; font-size: 1em; box-sizing: border-box; transition: border-color 0.2s; }
.msiq-text-fields .msiq-tf input:focus,
.msiq-text-fields .msiq-tf textarea:focus { border-color: #0073aa; outline: none; }
.msiq-text-fields .msiq-tf textarea { min-height: 80px; resize: vertical; }
.msiq-nav { display: flex; justify-content: space-between; margin-top: 20px; }
.msiq-nav button { padding: 12px 28px; border: none; border-radius: 6px; font-size: 1em; cursor: pointer; font-weight: 600; transition: all 0.2s; }
.msiq-nav .msiq-prev { background: #e0e0e0; color: #333; }
.msiq-nav .msiq-prev:hover { background: #ccc; }
.msiq-nav .msiq-next, .msiq-nav .msiq-submit { background: #0073aa; color: #fff; }
.msiq-nav .msiq-next:hover, .msiq-nav .msiq-submit:hover { background: #005a87; }
.msiq-nav .msiq-next:disabled, .msiq-nav .msiq-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.msiq-error { color: #d63638; font-size: 0.85em; margin-top: 4px; }
.msiq-loading { text-align: center; padding: 40px; color: #666; }
