﻿/* BudgetDoctor Styles */

/* Remove spinner arrows from all number inputs */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
}

main {
    flex: 1;
}

.bg-success {
    background-color: #198754 !important;
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

.btn-outline-success {
    color: #198754;
    border-color: #198754;
}

.btn-outline-success:hover,
.btn-outline-success.active,
.btn-check:checked + .btn-outline-success {
    background-color: #198754;
    border-color: #198754;
    color: white;
}

.text-success {
    color: #198754 !important;
}

.border-success {
    border-color: #198754 !important;
}

.progress-bar.bg-success {
    background-color: #198754 !important;
}

.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 0.5rem;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.table th {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}

.form-control:focus,
.form-select:focus,
.btn-check:focus + .btn {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.input-group-text {
    background-color: #f8f9fa;
}

/* Baby Steps Stepper */
.baby-step {
    position: relative;
    padding-left: 72px;
    min-height: 80px;
    margin-bottom: 0;
}

.baby-step .step-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 1;
}

.baby-step.completed .step-circle {
    background-color: #198754;
    color: white;
}

.baby-step.active .step-circle {
    background-color: #0d6efd;
    color: white;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

.baby-step.future .step-circle {
    background-color: #dee2e6;
    color: #6c757d;
}

.baby-step .step-connector {
    position: absolute;
    left: 23px;
    top: 48px;
    width: 2px;
    bottom: 0;
    background-color: #dee2e6;
}

.baby-step.completed .step-connector {
    background-color: #198754;
}

.baby-step:last-child .step-connector {
    display: none;
}

.baby-step.future .card {
    opacity: 0.6;
}

/* Vault */
.vault-toggle-btn {
    cursor: pointer;
    border: none;
    background: none;
    color: #6c757d;
    padding: 0.25rem;
}

.vault-toggle-btn:hover {
    color: #198754;
}

/* Bill urgency */
.bill-overdue {
    border-left: 4px solid #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05);
}

.bill-today {
    border-left: 4px solid #dc3545 !important;
}

.bill-soon {
    border-left: 4px solid #ffc107 !important;
}

/* Ledger/Register */
.ledger-table .income-amount {
    color: #198754;
    font-weight: 600;
}

.ledger-table .expense-amount {
    color: #dc3545;
    font-weight: 600;
}

.ledger-table .balance-col {
    font-weight: 700;
}

/* Envelope cards */
.envelope-card .progress {
    height: 8px;
}

/* Nav active state */
.navbar-nav .nav-link.active {
    font-weight: 600;
    border-bottom: 2px solid white;
}

/* Calendar Grid */
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.cal-header {
    border-bottom: 2px solid #dee2e6;
}

.cal-dow {
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
    padding: 0.5rem 0.25rem;
}

.cal-cell {
    min-height: 90px;
    border: 1px solid #eee;
    padding: 4px;
    font-size: 0.8rem;
    overflow: hidden;
}

.cal-outside {
    background-color: #fafafa;
    min-height: 90px;
}

.cal-today {
    background-color: rgba(25, 135, 84, 0.08);
    border-top: 3px solid #198754 !important;
}

.cal-today .cal-day-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #198754;
    color: #fff !important;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1;
}

.cal-overdue {
    background-color: rgba(220, 53, 69, 0.06);
}

.cal-due-today {
    background-color: rgba(220, 53, 69, 0.04);
    border-left: 3px solid #dc3545 !important;
}

.cal-soon {
    background-color: rgba(255, 193, 7, 0.06);
}

.cal-day-num {
    font-size: 0.85rem;
    color: #495057;
    margin-bottom: 2px;
}

.cal-item {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 4px;
    border-radius: 3px;
    margin-bottom: 2px;
    text-decoration: none;
    font-size: 0.7rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cal-item:hover {
    opacity: 0.8;
}

.cal-item-bill {
    background-color: rgba(25, 135, 84, 0.12);
    color: #155724;
}

.cal-item-debt {
    background-color: rgba(220, 53, 69, 0.12);
    color: #842029;
}

.cal-item-income {
    background-color: rgba(13, 202, 240, 0.12);
    color: #055160;
}

.cal-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cal-item-bill .cal-item-dot {
    background-color: #198754;
}

.cal-item-debt .cal-item-dot {
    background-color: #dc3545;
}

.cal-item-income .cal-item-dot {
    background-color: #0dcaf0;
}

.cal-item-dot-income {
    background-color: #0dcaf0;
}

.cal-income-icon {
    font-size: 0.72rem;
    color: #0dcaf0;
    flex-shrink: 0;
}

.cal-item-name {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cal-item-amt {
    font-weight: 600;
    flex-shrink: 0;
}

.cal-autopay-icon {
    font-size: 0.65rem;
    opacity: 0.7;
    flex-shrink: 0;
    margin: 0 1px;
    color: #0dcaf0;
}

.cal-item-autopay {
    opacity: 0.85;
}

/* Paid items */
.cal-item-paid {
    opacity: 0.55;
    text-decoration: line-through;
    background: rgba(25, 135, 84, 0.08) !important;
    border-color: rgba(25, 135, 84, 0.25) !important;
}
.cal-item-paid:hover {
    opacity: 0.8;
}
.cal-paid-icon {
    color: #198754;
    font-size: 0.6rem;
    flex-shrink: 0;
    margin-right: 1px;
}

.cal-day-total {
    font-size: 0.65rem;
    font-weight: 700;
    color: #6c757d;
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 1px;
    margin-top: 1px;
}

/* Calendar legend dots */
.cal-item-dot-legend {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

.cal-item-dot-bill {
    background-color: #198754;
}

.cal-item-dot-debt {
    background-color: #dc3545;
}

.cal-today-legend {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #198754;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 2px solid #198754;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.2);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #198754;
}

.pricing-card .price-period {
    font-size: 0.85rem;
    color: #6c757d;
}

.pricing-card .feature-list {
    list-style: none;
    padding: 0;
}

.pricing-card .feature-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card .feature-list li:last-child {
    border-bottom: none;
}

.pricing-card .feature-list i {
    width: 20px;
}

/* Premium / Upgrade Prompt */
.upgrade-prompt {
    border: 2px dashed #dee2e6;
    background-color: #fafafa;
}

.upgrade-prompt:hover {
    border-color: #198754;
}

/* Nav lock icons */
.nav-lock-icon {
    font-size: 0.65rem;
    vertical-align: super;
    margin-left: 2px;
    opacity: 0.7;
}

/* Premium badge in nav */
.premium-badge {
    font-size: 0.65rem;
    padding: 0.15em 0.45em;
    vertical-align: middle;
}

/* Trial countdown badge */
.trial-badge {
    font-size: 0.7rem;
    padding: 0.2em 0.5em;
    animation: pulse-trial 2s ease-in-out infinite;
}

@keyframes pulse-trial {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    .display-5 {
        font-size: 1.5rem;
    }
    .baby-step {
        padding-left: 60px;
    }
    .baby-step .step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .baby-step .step-connector {
        left: 19px;
        top: 40px;
    }
    .cal-cell {
        min-height: 60px;
        font-size: 0.65rem;
        padding: 2px;
    }
    .cal-item {
        font-size: 0.6rem;
        padding: 1px 2px;
    }
    .cal-item-name {
        display: none;
    }
    .cal-dow {
        font-size: 0.6rem;
        padding: 0.3rem 0;
    }
}

/* ─── Public Top Navbar (landing / pricing / login / register) ───── */

.sbd-topnav {
    background-color: #1a9a5f;
    padding: .25rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    overflow: hidden;
}

.sbd-topnav-logo {
    height: 160px;
    width: auto;
    filter: brightness(0) invert(1);
    margin: -50px 0;
    display: block;
}

.sbd-topnav .nav-link {
    font-size: .95rem;
    padding: .5rem .85rem;
    opacity: .85;
    transition: opacity .15s;
}

.sbd-topnav .nav-link:hover,
.sbd-topnav .nav-link.active {
    opacity: 1;
}

.sbd-topnav .btn-light {
    color: #1a9a5f;
    font-size: .9rem;
    border-radius: .375rem;
}

.sbd-topnav .btn-light:hover {
    background-color: #e8f5ed;
    color: #157347;
}

.sbd-topnav .navbar-toggler:focus {
    box-shadow: none;
}

/* Collapsed mobile menu background */
.sbd-topnav .navbar-collapse {
    background-color: #1a9a5f;
}

@media (max-width: 767.98px) {
    .sbd-topnav .navbar-collapse {
        padding: .5rem 0;
    }
    .sbd-topnav .btn-light {
        display: inline-block;
        margin: .5rem .85rem;
    }
}

/* Public pages don't use sidebar offset */
.main-wrapper-public {
    margin-left: 0 !important;
}

/* ─── Sidebar Layout ──────────────────────────────────────────────── */

:root {
    --sidebar-width: 240px;
}

/* Sidebar background — must be outside media query so mobile offcanvas gets it too */
#appSidebar {
    background-color: #1a9a5f !important;
}

/* Desktop: fixed sidebar */
@media (min-width: 992px) {
    #appSidebar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: var(--sidebar-width) !important;
        height: 100dvh;
        overflow: hidden;
        z-index: 1030;
        border-right: 1px solid rgba(0,0,0,.08);
        display: flex !important;
        flex-direction: column;
        transform: none !important;
        visibility: visible !important;
    }

    #appSidebar .offcanvas-body {
        overflow: hidden;
        flex-grow: 1;
    }

    .main-wrapper {
        margin-left: var(--sidebar-width);
        min-height: 100dvh;
        display: flex;
        flex-direction: column;
    }

    .main-wrapper > main {
        flex: 1;
    }
}

/* Mobile top bar */
.bd-topbar {
    background-color: #1a9a5f;
    padding: .6rem 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
}

/* Sidebar brand (desktop only) */
.sidebar-brand {
    padding: .8rem 1rem .7rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
    flex-shrink: 0;
    text-align: center;
}

.sidebar-brand img {
    max-width: 220px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Sidebar section labels */
.sidebar-section {
    font-size: .63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255,255,255,.4);
    padding: .9rem 1rem .2rem;
}

/* Sidebar nav links */
.sidebar-link {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .43rem 1rem;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    border-radius: .375rem;
    margin: 1px 8px;
    font-size: .875rem;
    line-height: 1.4;
    transition: background .12s, color .12s;
}

.sidebar-link:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
}

.sidebar-link.active {
    background: rgba(255,255,255,.22);
    color: #fff;
    font-weight: 600;
}

/* Lock icon on premium items in sidebar */
.sidebar-link .nav-lock-icon {
    font-size: .58rem;
    opacity: .55;
    vertical-align: super;
    margin-left: auto;
}

/* Sidebar scrollable nav area */
.sidebar-nav {
    overflow-y: auto;
    overflow-x: hidden;
    flex-grow: 1;
}

/* Sidebar footer (account/logout) */
.sidebar-footer {
    border-top: 1px solid rgba(255,255,255,.15);
    padding: .5rem 0 .75rem;
    flex-shrink: 0;
}

/* ─── Landing Page ───────────────────────────────────────────────── */

.sbd-hero { padding: 3rem 0 1.5rem; }

.sbd-hero-card { border-radius: 1rem; }

/* Feature section icons */
.sbd-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: .75rem;
}

/* Checkmark list */
.sbd-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sbd-check-list li {
    padding: .3rem 0 .3rem 1.6rem;
    position: relative;
    color: #555;
}

.sbd-check-list li::before {
    content: '\F26A'; /* bi-check-circle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: #198754;
    font-size: .9rem;
}

/* Grid feature icons */
.sbd-grid-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

/* How-it-works step circles */
.sbd-step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #198754;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Comparison table */
.table-success th {
    background-color: #198754 !important;
    color: #fff;
}

@media (max-width: 767.98px) {
    .sbd-hero { padding: 1rem 0 0; }
}

/* EveryDollar-style list rows */
.sbd-list-row { transition: background .1s; }
.sbd-list-row:hover { background: #f8f9fa !important; }
.sbd-row-btn { opacity: .4; transition: opacity .15s; }
.sbd-list-row:hover .sbd-row-btn { opacity: 1; }
.sbd-add-row:hover { background: #f0fdf4; cursor: pointer; }
.sbd-add-row { transition: background .1s; }

/* ─── Dark Mode ──────────────────────────────────────────────────── */

[data-theme="dark"] body {
    background-color: #1a1d21;
    color: #dee2e6;
}

[data-theme="dark"] .card {
    background-color: #212529;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

[data-theme="dark"] .card-header {
    background-color: #212529 !important;
    border-color: rgba(255,255,255,.08);
}

[data-theme="dark"] .card-footer {
    background-color: #212529 !important;
    border-color: rgba(255,255,255,.08);
}

[data-theme="dark"] .card-body {
    color: #dee2e6;
}

[data-theme="dark"] .bg-white {
    background-color: #212529 !important;
}

[data-theme="dark"] .bg-light {
    background-color: #2b3035 !important;
}

[data-theme="dark"] .text-dark {
    color: #dee2e6 !important;
}

[data-theme="dark"] .text-muted {
    color: #adb5bd !important;
}

[data-theme="dark"] .border {
    border-color: rgba(255,255,255,.1) !important;
}

[data-theme="dark"] .border-top,
[data-theme="dark"] .border-bottom {
    border-color: rgba(255,255,255,.1) !important;
}

[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: #2b3035;
    border-color: #495057;
    color: #dee2e6;
}

[data-theme="dark"] .form-control::placeholder {
    color: #6c757d;
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: #2b3035;
    border-color: #198754;
    color: #dee2e6;
}

[data-theme="dark"] .form-control:disabled,
[data-theme="dark"] .form-control[readonly] {
    background-color: #1a1d21;
}

[data-theme="dark"] .form-check-input {
    background-color: #2b3035;
    border-color: #495057;
}

[data-theme="dark"] .input-group-text {
    background-color: #2b3035;
    border-color: #495057;
    color: #adb5bd;
}

[data-theme="dark"] .modal-content {
    background-color: #2b3035;
    color: #dee2e6;
    border-color: rgba(255,255,255,.1);
}

[data-theme="dark"] .modal-header {
    border-color: rgba(255,255,255,.1);
}

[data-theme="dark"] .modal-footer {
    border-color: rgba(255,255,255,.1);
}

[data-theme="dark"] .list-group-item {
    background-color: #212529;
    color: #dee2e6;
    border-color: rgba(255,255,255,.08);
}

[data-theme="dark"] .table {
    color: #dee2e6;
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255,255,255,.02);
    --bs-table-hover-bg: rgba(255,255,255,.04);
}

[data-theme="dark"] .table th {
    color: #adb5bd;
    border-color: rgba(255,255,255,.1);
}

[data-theme="dark"] .table td {
    border-color: rgba(255,255,255,.06);
}

[data-theme="dark"] .dropdown-menu {
    background-color: #2b3035;
    border-color: rgba(255,255,255,.1);
}

[data-theme="dark"] .dropdown-item {
    color: #dee2e6;
}

[data-theme="dark"] .dropdown-item:hover,
[data-theme="dark"] .dropdown-item:focus {
    background-color: #343a40;
    color: #fff;
}

[data-theme="dark"] .dropdown-divider {
    border-color: rgba(255,255,255,.1);
}

[data-theme="dark"] .btn-light {
    background-color: #2b3035;
    border-color: #495057;
    color: #dee2e6;
}

[data-theme="dark"] .btn-light:hover {
    background-color: #343a40;
    border-color: #6c757d;
    color: #fff;
}

[data-theme="dark"] .btn-outline-secondary {
    color: #adb5bd;
    border-color: #495057;
}

[data-theme="dark"] .btn-outline-secondary:hover {
    background-color: #495057;
    color: #fff;
}

[data-theme="dark"] .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

[data-theme="dark"] .alert-success {
    background-color: rgba(25,135,84,.15);
    border-color: rgba(25,135,84,.3);
    color: #75b798;
}

[data-theme="dark"] .alert-danger {
    background-color: rgba(220,53,69,.15);
    border-color: rgba(220,53,69,.3);
    color: #ea868f;
}

[data-theme="dark"] .alert-warning {
    background-color: rgba(255,193,7,.15);
    border-color: rgba(255,193,7,.3);
    color: #ffda6a;
}

[data-theme="dark"] .alert-info {
    background-color: rgba(13,202,240,.1);
    border-color: rgba(13,202,240,.25);
    color: #6edff6;
}

[data-theme="dark"] .progress {
    background-color: #343a40;
}

[data-theme="dark"] .badge.bg-light {
    background-color: #343a40 !important;
    color: #dee2e6 !important;
}

[data-theme="dark"] .popover {
    background-color: #2b3035;
    border-color: rgba(255,255,255,.1);
}

[data-theme="dark"] .popover-header {
    background-color: #343a40;
    border-color: rgba(255,255,255,.1);
    color: #dee2e6;
}

[data-theme="dark"] .popover-body {
    color: #adb5bd;
}

[data-theme="dark"] .bs-popover-start > .popover-arrow::before,
[data-theme="dark"] .bs-popover-end > .popover-arrow::before,
[data-theme="dark"] .bs-popover-top > .popover-arrow::before,
[data-theme="dark"] .bs-popover-bottom > .popover-arrow::before {
    border-color: rgba(255,255,255,.1);
}

/* Calendar dark mode */
[data-theme="dark"] .cal-cell {
    border-color: #343a40;
}

[data-theme="dark"] .cal-outside {
    background-color: #1a1d21;
}

[data-theme="dark"] .cal-header {
    border-color: #495057;
}

[data-theme="dark"] .cal-day-num {
    color: #adb5bd;
}

[data-theme="dark"] .cal-day-total {
    color: #adb5bd;
    border-color: #343a40;
}

/* Pricing dark mode */
[data-theme="dark"] .pricing-card.featured {
    border-color: #198754;
}

[data-theme="dark"] .pricing-card .feature-list li {
    border-color: #343a40;
}

[data-theme="dark"] .upgrade-prompt {
    border-color: #495057;
    background-color: #1a1d21;
}

/* Landing page dark mode */
[data-theme="dark"] .sbd-check-list li {
    color: #adb5bd;
}

/* Budget list rows dark mode */
[data-theme="dark"] .sbd-list-row:hover {
    background: #2b3035 !important;
}

[data-theme="dark"] .sbd-add-row:hover {
    background: rgba(25,135,84,.1);
}

/* Nav tabs / pills dark mode */
[data-theme="dark"] .nav-tabs {
    border-color: rgba(255,255,255,.1);
}

[data-theme="dark"] .nav-tabs .nav-link {
    color: #adb5bd;
}

[data-theme="dark"] .nav-tabs .nav-link.active {
    background-color: #212529;
    border-color: rgba(255,255,255,.1);
    color: #dee2e6;
}

/* Accordion dark mode */
[data-theme="dark"] .accordion-item {
    background-color: #212529;
    border-color: rgba(255,255,255,.08);
}

[data-theme="dark"] .accordion-button {
    background-color: #212529;
    color: #dee2e6;
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
    background-color: #2b3035;
    color: #dee2e6;
}

[data-theme="dark"] .accordion-body {
    background-color: #212529;
}

/* Toast dark mode */
[data-theme="dark"] .toast {
    background-color: #2b3035;
    color: #dee2e6;
    border-color: rgba(255,255,255,.1);
}

/* Misc overrides */
[data-theme="dark"] hr {
    border-color: rgba(255,255,255,.1);
}

[data-theme="dark"] .form-text {
    color: #6c757d !important;
}

[data-theme="dark"] .breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}

[data-theme="dark"] a:not(.btn):not(.sidebar-link):not(.nav-link):not(.list-group-item):not(.dropdown-item) {
    color: #75b798;
}

[data-theme="dark"] a:not(.btn):not(.sidebar-link):not(.nav-link):not(.list-group-item):not(.dropdown-item):hover {
    color: #a3cfbb;
}
