.file-upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 10;
    opacity: 0;
}

.overlay-container {
    position: relative;
}

[data-theme="dark"] .js-plotly-plot .main-svg {
    background: transparent !important;
}

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

/* Read-only onboarding progress indicator (see OnboardingProgressStepper). */
.onboarding-stepper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 4px;
}

.onboarding-stepper__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 auto;
    max-width: 7rem;
    min-width: 0;
    text-align: center;
}

.onboarding-stepper__connector {
    flex: 1 1 auto;
    height: 2px;
    margin-top: 17px;
    border-radius: 1px;
    background-color: var(--mud-palette-lines-default);
}

.onboarding-stepper__connector--done {
    background-color: var(--mud-palette-primary);
}

.onboarding-stepper__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
}

.onboarding-stepper__circle--completed,
.onboarding-stepper__circle--current {
    background-color: var(--mud-palette-primary);
    color: var(--mud-palette-primary-text);
}

.onboarding-stepper__circle--current {
    box-shadow: 0 0 0 4px var(--mud-palette-primary-hover);
}

.onboarding-stepper__circle--upcoming {
    background-color: transparent;
    color: var(--mud-palette-text-secondary);
    border: 2px solid var(--mud-palette-lines-default);
}

.onboarding-stepper__label {
    margin-top: 8px;
    font-size: 0.75rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
    color: var(--mud-palette-text-secondary);
}

.onboarding-stepper__label--current {
    font-weight: 600;
    color: var(--mud-palette-primary);
}
/* Muted explanatory copy - subtitles, hints, descriptions. Rendered through the MutedText component,
   which is the only place that should reference this class. Bound to the palette token generated from
   MudTheme's public Palette.TextSecondary, not to a MudBlazor utility class name. */
.app-text-muted {
    color: var(--mud-palette-text-secondary);
}
