body:not(.mud-theme-dark) .precredential-page .mud-paper,
body:not(.mud-theme-dark) .precred-review-page .mud-paper,
body:not(.mud-theme-dark) .messages-page .mud-paper,
body:not(.mud-theme-dark) .home-page .tenant-contrast-panel,
body:not(.mud-theme-dark) .admin-view .mud-paper {
    background-color: color-mix(in srgb, var(--mud-palette-surface) 90%, var(--mud-palette-primary) 10%);
    border: 1px solid color-mix(in srgb, var(--mud-palette-primary) 18%, transparent);
}

body.mud-theme-dark .precredential-page .mud-paper,
body.mud-theme-dark .precred-review-page .mud-paper,
body.mud-theme-dark .messages-page .mud-paper,
body.mud-theme-dark .home-page .tenant-contrast-panel,
body.mud-theme-dark .admin-view .mud-paper {
    background-color: color-mix(in srgb, var(--mud-palette-surface) 82%, white 18%);
    border: 1px solid color-mix(in srgb, white 14%, transparent);
}

body:not(.mud-theme-dark) .precred-review-page .precred-review-table.tenant-contrast-panel .mud-table-container {
    background-color: color-mix(in srgb, var(--mud-palette-surface) 90%, var(--mud-palette-primary) 10%);
    border: 1px solid color-mix(in srgb, var(--mud-palette-primary) 18%, transparent);
}

body.mud-theme-dark .precred-review-page .precred-review-table.tenant-contrast-panel .mud-table-container {
    background-color: color-mix(in srgb, var(--mud-palette-surface) 82%, white 18%);
    border: 1px solid color-mix(in srgb, white 14%, transparent);
}

.overall-stage-flow {
    width: 100%;
    max-width: 560px;
    position: relative;
}

.overall-stage-line {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 9px;
    height: 2px;
    background: color-mix(in srgb, var(--mud-palette-text-primary) 25%, transparent);
}

.overall-stage-points {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.overall-stage-point-wrapper {
    width: 33%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.overall-stage-point {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 0 auto 6px;
    border: 2px solid transparent;
    background: var(--mud-palette-surface);
}

.overall-stage-point.is-complete {
    background: var(--mud-palette-success);
    border-color: var(--mud-palette-success);
}

.overall-stage-point.is-current {
    background: var(--mud-palette-secondary);
    border-color: var(--mud-palette-secondary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--mud-palette-secondary) 35%, transparent);
}

.overall-stage-point.is-upcoming {
    background: color-mix(in srgb, var(--mud-palette-text-primary) 20%, transparent);
    border-color: color-mix(in srgb, var(--mud-palette-text-primary) 30%, transparent);
}

.overall-stage-label {
    font-size: 0.72rem;
    line-height: 1.2;
    color: var(--mud-palette-text-primary);
}

.soft-hero-title {
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.soft-hero-subtitle {
    font-weight: 500;
    letter-spacing: 0.15px;
    opacity: 0.94;
}

body:not(.mud-theme-dark) .precredential-page .action-step-item-header {
    background: color-mix(in srgb, var(--mud-palette-primary) 8%, var(--mud-palette-surface));
    border: 1px solid color-mix(in srgb, var(--mud-palette-primary) 18%, transparent);
    border-radius: 6px;
    padding: 6px 10px;
}

body.mud-theme-dark .precredential-page .action-step-item-header {
    background: color-mix(in srgb, white 8%, var(--mud-palette-surface));
    border: 1px solid color-mix(in srgb, white 18%, transparent);
    border-radius: 6px;
    padding: 6px 10px;
}
