/* ── Step Indicator ── */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.step-indicator .step {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.step-indicator .step.active {
    color: #0d6efd;
    font-weight: 600;
}

.step-indicator .step.completed {
    color: #198754;
}

.step-indicator .step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid #dee2e6;
    color: #6c757d;
    background: #fff;
}

.step.active .step-number {
    border-color: #0d6efd;
    background: #0d6efd;
    color: #fff;
}

.step.completed .step-number {
    border-color: #198754;
    background: #198754;
    color: #fff;
}

.step-connector {
    width: 30px;
    height: 2px;
    background: #dee2e6;
    align-self: center;
}

/* ── Upload Dropzone ── */
.upload-dropzone {
    border: 2px dashed #dee2e6;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.upload-dropzone:hover {
    border-color: #0d6efd;
    background: #f0f6ff;
}

.upload-dropzone.has-file {
    border-color: #198754;
    background: #f0fdf4;
}

/* ── Review Badges ── */
.badge-yes {
    background-color: #198754;
}

.badge-no {
    background-color: #dc3545;
}

/* ── Form Section Cards ── */
.form-section {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-section h5 {
    margin-bottom: 1rem;
    color: #0f1b33;
}

/* ── Home Cards ── */
.home-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.home-card-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ── Blazor Error UI ── */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
