:root {
    --neo-primary: #5b9bd5;
    --neo-primary-hover: #4a8bc4;
    --neo-dark: #4a4a4a;
    --neo-teal: #6dbdb0;
    --neo-orange: #e8876a;
}

body {
    background-color: #f4f6f9;
    color: var(--neo-dark);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
    background-color: #fff !important;
    border-bottom: 1px solid #e0e4ea;
}

.navbar-logo {
    height: 38px;
    width: auto;
}

.navbar-app-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--neo-dark);
    letter-spacing: -0.01em;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
    background-color: var(--neo-primary);
    border-color: var(--neo-primary);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--neo-primary-hover);
    border-color: var(--neo-primary-hover);
}
.btn-outline-primary {
    color: var(--neo-primary);
    border-color: var(--neo-primary);
}
.btn-outline-primary:hover {
    background-color: var(--neo-primary);
    border-color: var(--neo-primary);
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
    border: 1px solid #e0e4ea;
    border-radius: 10px;
}
.card-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #e0e4ea;
    border-radius: 10px 10px 0 0 !important;
}

/* ── Client cards ────────────────────────────────────────── */
.client-card .card-header {
    background-color: var(--neo-primary);
    color: #fff;
    border-bottom: none;
}
.client-card .client-name {
    font-size: 1rem;
    font-weight: 600;
}
.client-card .card-footer {
    background: #fff;
    border-top: 1px solid #e0e4ea;
}

/* ── Auth pages (login / setup / reset) ──────────────────── */
.auth-wrapper {
    min-height: 100vh;
    background-color: #f4f6f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-card {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.auth-logo {
    height: 52px;
    width: auto;
}

/* ── Form sections ───────────────────────────────────────── */
.form-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #e0e4ea;
}

/* ── User status badges ──────────────────────────────────── */
.badge-active   { background-color: var(--neo-teal);   }
.badge-disabled { background-color: #adb5bd; }

/* ── Page titles ─────────────────────────────────────────── */
.page-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neo-dark);
}

/* ── Password toggle ─────────────────────────────────────── */
.password-wrapper {
    position: relative;
}
.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.password-toggle:hover { color: var(--neo-dark); }
