/* ContextGrade — Getting Started Wizard styles */

/* Step navigation rail */
.wizard-nav {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 28px;
    position: relative;
}
.wizard-nav::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--glass-border);
    z-index: 0;
}
.wizard-step-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    z-index: 1;
    cursor: pointer;
}
.wizard-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid var(--glass-border);
    background: var(--bg-color);
    color: var(--text-muted);
}
.wizard-step-pill.done .wizard-step-dot {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
}
.wizard-step-pill.active .wizard-step-dot {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.15);
}
.wizard-step-label {
    font-size: 11px;
    color: var(--text-muted);
    white-space: nowrap;
}
.wizard-step-pill.active .wizard-step-label { color: var(--accent-secondary); }
.wizard-step-pill.done .wizard-step-label { color: var(--accent-primary); }

/* Panels */
.wizard-panel-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-main);
}
.wizard-panel-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Chips (subjects / students) */
.wizard-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 0;
    min-height: 10px;
}
.wizard-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
    color: var(--text-main);
}
.wizard-chip-x {
    cursor: pointer;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1;
    background: transparent;
    border: none;
    padding: 0;
}
.wizard-chip-x:hover { color: #f87171; }

/* Generic placeholder controls */
.wizard-toggle-row {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 12px 14px;
    margin: 12px 0;
}
.wizard-count-btn {
    width: 34px;
    padding: 0;
    font-size: 18px;
    line-height: 1;
}
.wizard-count-val {
    font-size: 22px;
    font-weight: 500;
    min-width: 36px;
    text-align: center;
    color: var(--text-main);
}
.wizard-preview-list {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    max-height: 130px;
    overflow-y: auto;
    margin-top: 12px;
}
.wizard-preview-item {
    padding: 6px 12px;
    font-size: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.wizard-preview-item:last-child { border-bottom: none; }
.wizard-preview-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
    flex-shrink: 0;
}

/* Grading option cards */
.wizard-grade-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    margin-bottom: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.wizard-grade-option:hover {
    border-color: var(--accent-primary);
    background: var(--glass-bg);
}
.wizard-grade-option.selected {
    border-color: var(--accent-primary);
    background: var(--glass-bg);
}
.wizard-grade-radio {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    flex-shrink: 0;
    transition: all 0.15s;
}
.wizard-grade-option.selected .wizard-grade-radio {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
}
.wizard-grade-name { font-size: 13px; color: var(--text-main); }
.wizard-grade-eg { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
