/* ==================================================
   Custom RBT Quiz Styles
   ================================================== */
   #rbt-quiz-app {
    font-family: 'Plus Jakarta Sans', sans-serif;
    max-width: 800px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    border: 1px solid #eaeaea;
}

.quiz-header {
    background: var(--ast-global-color-0, #FF6210);
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quiz-header h2 {
    margin: 0;
    color: white;
    font-family: 'Lexend', sans-serif;
    font-size: 1.5rem;
}

.quiz-progress-text {
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.9;
}

.quiz-progress-bar-container {
    height: 6px;
    background: rgba(255,255,255,0.2);
    width: 100%;
}

.quiz-progress-fill {
    height: 100%;
    background: white;
    width: 0%;
    transition: width 0.3s ease;
}

.quiz-content {
    padding: 40px 30px;
    min-height: 350px;
    position: relative;
}

.quiz-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ast-global-color-3, #353535);
    margin-bottom: 30px;
    line-height: 1.5;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
}

.quiz-option:hover {
    border-color: var(--ast-global-color-0, #FF6210);
    background: #fff5f0;
}

.quiz-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: var(--ast-global-color-0, #FF6210);
    cursor: pointer;
}

.quiz-option.selected {
    border-color: var(--ast-global-color-0, #FF6210);
    background: #fff5f0;
}

.quiz-footer {
    padding: 20px 30px;
    border-top: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    background: #fafafa;
}

.btn-quiz {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-prev {
    background: #eaeaea;
    color: #555;
}

.btn-prev:hover {
    background: #d4d4d4;
}

.btn-next {
    background: var(--ast-global-color-0, #FF6210);
    color: white;
}

.btn-next:hover {
    background: var(--ast-global-color-1, #F15808);
}

.btn-next:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Results Screen */
.quiz-results {
    text-align: center;
    padding: 40px 20px;
}

.quiz-score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff5f0;
    border: 8px solid var(--ast-global-color-0, #FF6210);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ast-global-color-0, #FF6210);
    font-family: 'Lexend', sans-serif;
}

.quiz-results h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--ast-global-color-2);
}

.quiz-results p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.quiz-btn-restart {
    background: var(--ast-global-color-0, #FF6210);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quiz-btn-restart:hover {
    background: var(--ast-global-color-1, #F15808);
}

.hidden {
    display: none !important;
}
