.btn-orange {
    --bs-btn-color: #fff;
    --bs-btn-bg: #ff6b35;
    --bs-btn-border-color: #ff6b35;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e85a2a;
    --bs-btn-hover-border-color: #e85a2a;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #e85a2a;
    --bs-btn-active-border-color: #e85a2a;
}

.btn-outline-orange {
    --bs-btn-color: #ff6b35;
    --bs-btn-border-color: #ff6b35;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #ff6b35;
    --bs-btn-hover-border-color: #ff6b35;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #ff6b35;
    --bs-btn-active-border-color: #ff6b35;
}

.text-orange {
    color: #ff6b35 !important;
}

.auth-content-frame {
    min-height: 460px;
}

.auth-hero-content {
    max-width: 550px;
}

.auth-form-content {
    max-width: 440px;
}

.soft-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.soft-status-success {
    background: #d8f8df;
    color: #16a34a;
}

.soft-status-warning {
    background: #fff3cd;
    color: #b7791f;
}

.soft-status-danger {
    background: #ffe4ec;
    color: #f43f5e;
}

.soft-status-info {
    background: #dff1ff;
    color: #0d6efd;
}

.role-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.role-pill-owner {
    background: #22c55e;
}

.role-pill-manager {
    background: #f43f5e;
}

/* ── Feature badges ── */
.feature-badge-purple {
    background: rgba(111, 66, 193, 0.12);
    color: #6f42c1;
    border: 1px solid rgba(111, 66, 193, 0.25);
}

[data-bs-theme="dark"] .feature-badge-purple {
    background: rgba(111, 66, 193, 0.2);
    color: #d0aff7;
    border: 1px solid rgba(111, 66, 193, 0.4);
}

/* ── Dark mode overrides for admin content components ──
   The admin panel uses Bootstrap data-bs-theme="dark".
   These classes have hardcoded light backgrounds that
   Bootstrap can't fix automatically, so we override here.
   ── */
[data-bs-theme="dark"] .soft-status-success {
    background: #14532d;
    color: #86efac;
}

[data-bs-theme="dark"] .soft-status-warning {
    background: #422006;
    color: #fcd34d;
}

[data-bs-theme="dark"] .soft-status-danger {
    background: #7f1d1d;
    color: #fca5a5;
}

[data-bs-theme="dark"] .soft-status-info {
    background: #1e3a5f;
    color: #93c5fd;
}

/* role-pill keeps white text — only tweak luminance if needed */
[data-bs-theme="dark"] .role-pill-owner   { background: #16a34a; }
[data-bs-theme="dark"] .role-pill-manager { background: #e11d48; }
