
:root {
    color-scheme: light;
    --table-font-size: 15px;
    --list-font-size: 15px;
}

html[data-bs-theme="dark"] {
    color-scheme: dark;
}

html, body {
    min-height: 100%;
}

body {
    background: #f4f6fb;
    font-size: calc(1rem + 1pt);
    color: #111827;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at top left, rgba(10, 26, 63, 0.05), transparent 40%),
        radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.06), transparent 45%),
        #f5f7fb;
}

.page-wrapper {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.page-body .container-xl {
    padding: 1.5rem 1.25rem 2.5rem;
}

.page-body .container-xl > * + * {
    margin-top: 1.25rem;
}

.page-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b172f;
    background: linear-gradient(135deg, #0b172f 0%, #0e1f42 50%, #0b172f 100%);
    padding: 2rem 1.5rem;
}

.container-tight {
    width: 100%;
    max-width: 480px;
}

[data-bs-theme="dark"] body {
    background: #0b1222;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .page {
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.35), transparent 40%),
        radial-gradient(circle at bottom right, rgba(17, 24, 39, 0.35), transparent 45%),
        #060914;
}

[data-bs-theme="dark"] .page-center {
    background: linear-gradient(135deg, #060914 0%, #0b1222 50%, #060914 100%);
}

[data-bs-theme="dark"] .page-heading,
[data-bs-theme="dark"] .content-card,
[data-bs-theme="dark"] .form-card,
[data-bs-theme="dark"] .detail-view,
[data-bs-theme="dark"] .grid-view .table,
[data-bs-theme="dark"] .grid-view {
    background: #111827;
    border-color: #1f2937;
    color: #e5e7eb;
    box-shadow: none;
}

[data-bs-theme="dark"] .grid-view .table > thead > tr > th {
    background: #0f172a;
    color: #d1d5db;
}

[data-bs-theme="dark"] .grid-view .table > tbody > tr:hover {
    background-color: #0b1222;
}

[data-bs-theme="dark"] .content-card p.text-muted,
[data-bs-theme="dark"] .page-heading .text-muted,
[data-bs-theme="dark"] .navbar .navbar-text,
[data-bs-theme="dark"] .navbar .form-check-label {
    color: #cbd5e1 !important;
}

[data-bs-theme="dark"] .page-header .text-secondary,
[data-bs-theme="dark"] .text-muted {
    color: #94a3b8 !important;
}

[data-bs-theme="dark"] .form-card {
    background: linear-gradient(180deg, #0f172a 0%, #0b1222 100%);
    box-shadow: none;
}

[data-bs-theme="dark"] .form-card .form-control,
[data-bs-theme="dark"] .form-card .form-select,
[data-bs-theme="dark"] .form-card textarea,
[data-bs-theme="dark"] .form-card input,
[data-bs-theme="dark"] .form-card select {
    border-color: #1f2a3d;
    background-color: #0e1628;
    color: #e5e7eb;
}

[data-bs-theme="dark"] .form-card .form-label {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .form-card .form-control:focus,
[data-bs-theme="dark"] .form-card .form-select:focus,
[data-bs-theme="dark"] .form-card textarea:focus,
[data-bs-theme="dark"] .form-card input:focus,
[data-bs-theme="dark"] .form-card select:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.15);
    background-color: #111a2f;
}

[data-bs-theme="dark"] .form-card .form-check {
    border-color: #1f2a3d;
    background: #0f172a;
}

[data-bs-theme="dark"] .bg-light-subtle {
    background-color: #0f172a !important;
    border-color: #1f2937 !important;
    color: #e2e8f0;
}

[data-template-import="off"] .template-import-control {
    display: none !important;
}

.footer {
    font-size: .95em;
}

.not-set {
    color: #6c757d;
    font-style: normal;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

[data-bs-theme="dark"] a.asc:after {
    border-bottom-color: #e2e8f0;
}

[data-bs-theme="dark"] a.desc:after {
    border-top-color: #e2e8f0;
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.navbar-nav li > form > button.logout {
    padding-top: 0;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
}

@media(max-width:767px) {
    .navbar-nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 0;
    }
}

.navbar-nav > li > form > button.logout:focus,
.navbar-nav > li > form > button.logout:hover {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.navbar-nav > li > form > button.logout:focus {
    outline: none;
}

.page-heading {
    background: linear-gradient(135deg, #ffffff, #f3f6ff);
    border: 1px solid #e3e7ef;
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.25rem;
}

.page-title {
    font-weight: 700;
    letter-spacing: -0.01em;
}

.page-subtitle {
    max-width: 48rem;
}

.content-section {
    margin-bottom: 1.75rem;
}

.content-card {
    background: #ffffff;
    border: 1px solid #e7eaee;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(33, 37, 41, 0.05);
}

.form-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #e3e8f2;
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.form-card__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem 1.25rem;
}

.form-grid--balanced {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.form-grid--columns {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem 1rem;
}

.form-grid__full {
    grid-column: 1 / -1;
}

.form-surface {
    background: #ffffff;
    border: 1px solid #e6ebf5;
    border-radius: 0.9rem;
    padding: 1rem 1.1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 24px rgba(15, 23, 42, 0.05);
}

.form-surface--soft {
    background: linear-gradient(180deg, #f7f9fe 0%, #ffffff 100%);
}

.form-section__header {
    margin-bottom: 0.75rem;
}

.accent-banner {
    background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 100%);
    border: 1px solid #e3e9f5;
    border-radius: 0.95rem;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.form-card .form-label {
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0.01em;
}

.form-card .form-control,
.form-card .form-select,
.form-card textarea,
.form-card input,
.form-card select {
    border-radius: 0.75rem;
    border: 1px solid #d8deea;
    box-shadow: none;
    background-color: #fbfcff;
    transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}

.form-card .form-control:focus,
.form-card .form-select:focus,
.form-card textarea:focus,
.form-card input:focus,
.form-card select:focus {
    border-color: #4c8dff;
    box-shadow: 0 0 0 0.2rem rgba(76, 141, 255, 0.15);
    background-color: #ffffff;
}

.form-card .form-check {
    padding: 0.75rem 0.85rem;
    border: 1px solid #e3e8f2;
    border-radius: 0.75rem;
    background: #fdfdff;
    display: flex;
    align-items: center;
}

.form-card .form-check-input {
    margin-right: 0.6rem;
    width: 1.1rem;
    height: 1.1rem;
}

.form-card__footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e7ecf4;
    display: flex;
    gap: 0.75rem;
}

.form-card__footer .btn {
    min-width: 140px;
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    font-weight: 700;
}

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

.custom-navbar {
    background: linear-gradient(120deg, #0a1b3f 0%, #0c2454 60%, #0a1b3f 100%);
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-navbar .navbar-nav .nav-link,
.custom-navbar .navbar-brand {
    color: #e5ebff;
    font-weight: 700;
    letter-spacing: 0.01em;
    position: relative;
}

.custom-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: -0.45rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7ab6ff 0%, #4b8dff 100%);
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-brand:hover {
    color: #ffffff;
}

.custom-navbar .navbar-nav .nav-link:hover::after {
    opacity: 0.55;
}

.custom-navbar .navbar-nav .nav-link.active,
.custom-navbar .navbar-nav .show > .nav-link {
    color: #ffffff;
}

.custom-navbar .navbar-nav .nav-link.active::after,
.custom-navbar .navbar-nav .show > .nav-link::after {
    opacity: 1;
}

.custom-navbar .navbar-nav li > form > button.logout {
    color: #e5ebff;
}

.custom-navbar .navbar-nav li > form > button.logout:focus,
.custom-navbar .navbar-nav li > form > button.logout:hover {
    color: #ffffff;
}

.custom-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.custom-navbar .navbar-toggler-icon {
    background-image: none;
    width: 1.75rem;
    height: 1.75rem;
    position: relative;
    background: linear-gradient(#ffffff, #ffffff);
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: center;
}

.custom-navbar .navbar-toggler-icon::before,
.custom-navbar .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

.custom-navbar .navbar-toggler-icon::before {
    top: 6px;
}

.custom-navbar .navbar-toggler-icon::after {
    bottom: 6px;
}

.custom-navbar .form-control,
.custom-navbar .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: #e5ebff;
}

.custom-navbar .form-control::placeholder {
    color: rgba(229, 235, 255, 0.72);
}

.custom-navbar .form-control:focus {
    border-color: #9cc4ff;
    box-shadow: 0 0 0 0.2rem rgba(156, 196, 255, 0.2);
}

.custom-navbar .btn-outline-light:hover,
.custom-navbar .btn-outline-light:focus-visible {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
}


.dropdown-menu {
    border-radius: 0.75rem;
    border: 1px solid rgba(12, 36, 84, 0.15);
    box-shadow: 0 12px 30px rgba(12, 36, 84, 0.25);
    opacity: 0;
    transform: translateY(6px);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

[data-bs-theme="dark"] .dropdown-menu {
    background-color: #0f172a;
    border-color: #1f2937;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

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

.dropdown-item.active,
.dropdown-item:active {
    background: linear-gradient(120deg, #7ab6ff 0%, #4b8dff 100%);
}

[data-bs-theme="dark"] .dropdown-item.active,
[data-bs-theme="dark"] .dropdown-item:active {
    background: linear-gradient(120deg, #3b82f6 0%, #2563eb 100%);
    color: #e2e8f0;
}

.page-header {
    background: transparent;
}

.page-pretitle {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 800;
}

.page-title {
    color: #0f172a;
    font-weight: 800;
}

[data-bs-theme="dark"] .page-pretitle {
    color: #cbd5e1;
}

[data-bs-theme="dark"] .page-title {
    color: #e5e7eb;
}

[data-bs-theme="dark"] .page-heading {
    border-color: #1f2937;
}

.content-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.content-toolbar .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.toolbar-actions .btn + .btn {
    margin-left: 0.5rem;
}

.grid-view {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.85rem;
    border: 1px solid #e7eaee;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.grid-view .table {
    margin-bottom: 0;
    background: transparent;
    font-size: var(--table-font-size);
    min-width: 960px;
}

.list-group,
.list-group-item {
    font-size: var(--list-font-size);
}

.list-group-item small,
.list-group-item .small {
    font-size: calc(var(--list-font-size) * 0.9);
}

.grid-view .table > thead > tr > th {
    background: #f6f8fb;
    border-bottom: 0;
    font-size: calc(var(--table-font-size) * 0.9);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #4c5564;
}

[data-bs-theme="dark"] .grid-view .table > thead > tr > th {
    border-color: #1f2937;
}

.grid-view .table > tbody > tr:hover {
    background-color: #f8f9fb;
}

.grid-view .table > tbody > tr > td,
.grid-view .table > thead > tr > th {
    padding: 0.9rem 0.75rem;
    vertical-align: middle;
}

.grid-view .filters input,
.grid-view .filters select {
    border-radius: 0.5rem;
    border: 1px solid #d5d9e2;
    box-shadow: none;
}

.detail-view {
    background: #ffffff;
    border: 1px solid #e7eaee;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 30px rgba(33, 37, 41, 0.04);
}

[data-bs-theme="dark"] .detail-view {
    border-color: #1f2937;
    box-shadow: none;
}

.detail-view table {
    margin-bottom: 0;
    font-size: var(--table-font-size);
}

.table-responsive {
    border-radius: 0.85rem;
    border: 1px solid #e7eaee;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 8px 24px rgba(33, 37, 41, 0.04);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    margin-bottom: 1rem;
}

.table-responsive .table {
    margin-bottom: 0;
    min-width: 720px;
}

@media (max-width: 991.98px) {
    .grid-view,
    .table-responsive {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        border-radius: 1rem;
    }

    .grid-view .table > thead > tr > th,
    .grid-view .table > tbody > tr > td,
    .table-responsive .table > thead > tr > th,
    .table-responsive .table > tbody > tr > td {
        padding: 0.85rem 0.75rem;
        white-space: nowrap;
    }
}

@media (max-width: 575.98px) {
    .grid-view,
    .table-responsive {
        margin-left: -1rem;
        margin-right: -1rem;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .grid-view .table,
    .table-responsive .table {
        min-width: 640px;
    }
}

.detail-view th {
    width: 30%;
    color: #6b7280;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    border-color: #edf0f4;
    background: #f9fafc;
}

.detail-view td {
    border-color: #edf0f4;
    font-weight: 600;
}

[data-bs-theme="dark"] .detail-view th,
[data-bs-theme="dark"] .detail-view td {
    border-color: #1f2937;
}

[data-bs-theme="dark"] .detail-view th {
    background: #0f172a;
    color: #cbd5e1;
}

[data-bs-theme="dark"] .detail-view td {
    color: #e5e7eb;
}

.detail-view tr:last-child th,
.detail-view tr:last-child td {
    border-bottom: none;
}

.asset-column-toggle {
    background: #ffffff;
    border: 1px solid #e7eaee;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 5px 20px rgba(33, 37, 41, 0.04);
}

[data-bs-theme="dark"] .asset-column-toggle {
    background: #0f172a;
    border-color: #1f2937;
    box-shadow: none;
}

[data-bs-theme="dark"] .footer {
    color: #cbd5e1;
    border-top: 1px solid #1f2937;
}

.qb-invoice-board .card {
    border-radius: 1.1rem;
}

.qb-invoice-hero {
    background: linear-gradient(135deg, #f8fbf5 0%, #eef7ec 40%, #e8f3e5 100%);
    border: 1px solid #e5efe0;
}

.qb-invoice-hero .display-6 {
    color: #0f172a;
}

.qb-invoice-stats .qb-stat {
    background: #ffffff;
    border: 1px solid #e5e9f0;
    border-radius: 0.85rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.qb-btn-primary {
    background-color: #2ca01c;
    border-color: #2ca01c;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(44, 160, 28, 0.25);
}

.qb-btn-primary:hover,
.qb-btn-primary:focus {
    background-color: #248516;
    border-color: #248516;
    color: #ffffff;
}

.qb-btn-ghost {
    border-color: #d7dde5;
    color: #1f2937;
    background-color: #ffffff;
}

.qb-btn-ghost:hover,
.qb-btn-ghost:focus {
    background-color: #f6f8fb;
    color: #111827;
}

.qb-filter-card {
    border: 1px solid #e7ebf2;
}

.qb-filter-form .form-label {
    font-weight: 600;
    color: #4b5563;
}

.qb-input {
    border-radius: 0.65rem;
    border-color: #d7dde5;
    background: #fdfefe;
}

.qb-input:focus {
    border-color: #2ca01c;
    box-shadow: 0 0 0 0.2rem rgba(44, 160, 28, 0.15);
}

.qb-invoice-list .card-header {
    background: #f9fbff;
    border-color: #edf0f4;
}

.qb-invoice-row {
    padding: 1.25rem 1.5rem;
    border-color: #edf0f4;
}

.qb-invoice-row + .qb-invoice-row {
    border-top: 1px solid #edf0f4;
}

.qb-pill {
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.qb-pill-muted {
    background: #f1f5f9;
    color: #475569;
}

.qb-pill-warning {
    background: #fff4e5;
    color: #d97706;
}

.qb-pill-success {
    background: #e7f7eb;
    color: #2ca01c;
}

.qb-pill-danger {
    background: #fde6e6;
    color: #c53030;
}

.profile-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fb, #ffffff);
    border: 1px solid #e6eaf3;
}

.avatar-ring {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px dashed #cdd5e4;
    pointer-events: none;
}

.profile-meta .fw-semibold {
    letter-spacing: 0.01em;
}

.avatar-upload-tile {
    padding: 1rem;
    border: 1px dashed #cdd5e4;
    border-radius: 1rem;
    background: #f8fafc;
}

.avatar-preview-tile {
    width: 5rem;
    height: 5rem;
    font-size: 1.1rem;
    background-size: cover;
    background-position: center;
    background-color: #eef2ff;
    color: #4c6fff;
    margin: 0 auto;
}

.avatar-preview-tile.has-image {
    color: transparent;
    background-color: transparent;
}

.qb-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.qb-table-card .card-header {
    background: #f9fafc;
    border-bottom: 1px solid #edf0f4;
}

.qb-table th {
    text-transform: uppercase;
    font-size: calc(var(--table-font-size) * 0.9);
    letter-spacing: 0.02em;
    color: #6b7280;
    background: #f7f9fc;
    border-bottom: 1px solid #e5e9f0;
}

.qb-table td {
    border-color: #edf0f4;
    font-size: var(--table-font-size);
}

.qb-table tr:hover td {
    background: #f8fbff;
}

[data-bs-theme="dark"] .qb-invoice-hero {
    background: linear-gradient(135deg, #0f172a 0%, #0b1222 100%);
    border-color: #1f2937;
}

[data-bs-theme="dark"] .qb-invoice-stats .qb-stat {
    background: #0f172a;
    border-color: #1f2937;
    box-shadow: none;
}

[data-bs-theme="dark"] .qb-filter-card,
[data-bs-theme="dark"] .qb-invoice-list,
[data-bs-theme="dark"] .qb-table-card {
    border-color: #1f2937;
}

[data-bs-theme="dark"] .qb-invoice-row {
    border-color: #1f2937;
}

[data-bs-theme="dark"] .qb-table th {
    background: #0f172a;
    color: #cbd5e1;
    border-color: #1f2937;
}

[data-bs-theme="dark"] .qb-table td {
    border-color: #1f2937;
}

[data-bs-theme="dark"] .qb-pill-muted {
    background: #1f2937;
    color: #cbd5e1;
}

[data-bs-theme="dark"] .qb-pill-warning {
    background: #2c2412;
    color: #fbbf24;
}

[data-bs-theme="dark"] .qb-pill-success {
    background: #12321a;
    color: #7dd3fc;
}

[data-bs-theme="dark"] .qb-pill-danger {
    background: #381618;
    color: #fca5a5;
}

[data-bs-theme="dark"] .profile-hero {
    background: linear-gradient(135deg, #0f172a, #111827);
    border-color: #1f2937;
}

[data-bs-theme="dark"] .avatar-upload-tile {
    background: #0f172a;
    border-color: #1f2937;
}

@media (max-width: 767.98px) {
    .page-body .container-xl {
        padding: 1.25rem 1rem 2rem;
    }

    .page-header .row {
        row-gap: 0.75rem;
    }

    .page-header .col-auto {
        width: 100%;
        text-align: left;
    }
}
