/**
 * ATOMIC DESIGN: Progress Bar Molecule
 * Clean progress bar used in quiz and signup flows
 */

.clean-progress-container {
    position: sticky;
    top: 0;
    background: transparent;
    z-index: 100;
    padding: 1.5rem 0; /* 24px top and bottom - more breathing room like quiz */
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.progress-bar-clean {
    flex: 1;
    height: 8px;
    background: var(--dq-gray-100);
    border-radius: 4px;
    overflow: visible;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--dq-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.question-counter {
    display: none; /* Hidden by default */
}

/* Mobile Responsive Styles (matches quiz) */
@media (max-width: 768px) {
    .clean-progress-container {
        padding: 0.75rem 0; /* Tighter spacing on mobile */
    }
}
