body { background-color: #f7f8fa; }

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}
.wizard-steps li {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    border-bottom: 4px solid #dee2e6;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.85rem;
}
.wizard-steps li.active {
    border-color: #198754;
    color: #198754;
}
.wizard-steps li.done {
    border-color: #75b798;
    color: #75b798;
}

.form-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

table.edu-table th, table.edu-table td {
    vertical-align: middle;
}

/* ASP.NET Core adds this class to the validation summary div when there are no errors -
   without this rule an empty red alert box would show on every page load. */
.validation-summary-valid {
    display: none;
}

/* Unified login page tabs (Applicant / College / Admin) */
.login-tabs .nav-link {
    color: #495057;
    border: 1px solid #dee2e6;
}
.login-tabs .nav-link.active {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}
