body {
    background-color: #f4f6f9;
}
.card {
    border: none;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.table-responsive {
    border-radius: .5rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
.step-indicator {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}
.step-indicator .step {
    flex: 1 1 auto;
    text-align: center;
    padding: .5rem;
    background: #e9ecef;
    border-radius: .375rem;
    font-size: .8rem;
    min-width: 100px;
}
.step-indicator .step.active {
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
}
.step-indicator .step.done {
    background: #198754;
    color: #fff;
}
.step-indicator a.step {
    text-decoration: none;
}
.step-indicator a.step:hover {
    filter: brightness(0.9);
}
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#0d6efd,#0a2540);
}
.login-card {
    max-width: 640px;
    width: 100%;
}
.login-logo-img {
    width: 250px;
    max-width: 100%;
    height: auto;
}
.navbar-logo-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
}
.navbar-logo-circle img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
@media (max-width: 576px) {
    .step-indicator .step { min-width: 80px; font-size: .7rem; }
}
