.sq-container-49dec96c {
    max-width: 680px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 35px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

/* Header */
.sq-container-49dec96c .sq-quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

.sq-container-49dec96c .sq-quiz-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e1b4b;
}

.sq-container-49dec96c .sq-quiz-header p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

/* Forms */
.sq-container-49dec96c .sq-form-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sq-container-49dec96c .sq-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.sq-container-49dec96c .sq-input:focus {
    border-color: #8e44ad;
}

.sq-container-49dec96c .sq-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    background: #8e44ad;
    transition: filter 0.2s;
}

.sq-container-49dec96c .sq-btn:hover {
    filter: brightness(1.08);
}

/* Meta Progress tracking */
.sq-container-49dec96c .sq-quiz-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.sq-container-49dec96c .sq-progress-track {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-bottom: 35px;
    overflow: hidden;
}

.sq-container-49dec96c .sq-progress-bar-fill {
    height: 100%;
    background-color: #8e44ad;
    width: 0%;
    transition: width 0.3s ease;
}

/* Card layout */
.sq-container-49dec96c .sq-question-card {
    margin-bottom: 30px;
}

.sq-container-49dec96c .sq-question-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 60px;
}

.sq-container-49dec96c .sq-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .sq-container-49dec96c .sq-options-grid {
        grid-template-columns: 1fr;
    }
}

.sq-container-49dec96c .sq-option-card {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sq-container-49dec96c .sq-option-card:hover {
    border-color: #8e44ad;
    background: #fdfafd;
}

.sq-container-49dec96c .sq-option-card.selected {
    background-color: #8e44ad;
    border-color: #8e44ad;
    color: white;
}

.sq-container-49dec96c .sq-option-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    margin-right: 12px;
    flex-shrink: 0;
}

.sq-container-49dec96c .sq-option-card.selected .sq-option-badge {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.sq-container-49dec96c .sq-option-text {
    font-size: 15px;
    font-weight: 500;
}

/* Nav footer */
.sq-container-49dec96c .sq-quiz-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    margin-top: 20px;
}

.sq-container-49dec96c .sq-btn-prev {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    padding: 10px;
}

.sq-container-49dec96c .sq-btn-prev:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Spinner Overlay */
.sq-container-49dec96c .sq-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.sq-container-49dec96c .sq-spinner {
    width: 45px;
    height: 45px;
    border: 4px solid #f1f5f9;
    border-top: 4px solid #8e44ad;
    border-radius: 50%;
    animation: sq-spin-49dec96c 0.8s linear infinite;
    margin-bottom: 12px;
}

@keyframes sq-spin-49dec96c {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
