:root {
    color-scheme: dark;
    --installer-accent: #477b9d;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(71, 123, 157, 0.18), transparent 34rem),
        var(--bs-body-bg);
}

.installer-shell {
    width: min(1080px, calc(100% - 2rem));
    margin: 2rem auto;
}

.installer-brand-icon {
    color: #79aeda;
}

.installer-progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.installer-progress-item {
    min-width: 0;
    padding: 0.75rem 0.5rem;
    color: var(--bs-secondary-color);
    text-align: center;
    border-bottom: 3px solid var(--bs-border-color);
}

.installer-progress-item.is-active,
.installer-progress-item.is-complete {
    color: var(--bs-body-color);
    border-bottom-color: var(--installer-accent);
}

.installer-step[hidden] {
    display: none !important;
}

.installer-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--bs-border-color);
}

.installer-check:last-child {
    border-bottom: 0;
}

.installer-status {
    min-height: 3rem;
}

.installer-summary dt {
    color: var(--bs-secondary-color);
    font-weight: 400;
}

.installer-summary dd {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .installer-progress {
        grid-template-columns: 1fr;
    }

    .installer-progress-item {
        display: none;
        text-align: left;
    }

    .installer-progress-item.is-active {
        display: block;
    }
}
