:root {
    --ms-orange: #f15a24;
    --ms-orange-dark: #c94718;
    --ms-orange-soft: #fff2eb;

    --ms-green: #347f67;
    --ms-green-dark: #276451;
    --ms-green-soft: #e7f2ed;

    --ms-red: #d63c32;
    --ms-red-dark: #b92f28;
    --ms-red-soft: #fbeceb;

    --ms-teal: #62b8c7;
    --ms-teal-dark: #4699a8;
    --ms-teal-soft: #edf8fa;

    --ms-gold: #c9952e;
    --ms-gold-soft: #fff8e8;

    --ms-charcoal: #30343b;
    --ms-gray-700: #4f555c;
    --ms-gray-600: #6c757d;
    --ms-gray-500: #8a9096;
    --ms-gray-300: #dee2e6;
    --ms-gray-200: #e9ecef;
    --ms-gray-100: #f5f6f7;

    --ms-white: #ffffff;

    --ms-radius: 0.5rem;
    --ms-radius-sm: 0.35rem;

    --ms-shadow-sm:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 3px 8px rgba(0, 0, 0, 0.04);

    --ms-shadow-md:
        0 6px 20px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   BASE
========================================================= */

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

body {
    background: var(--ms-gray-100);
    color: var(--ms-charcoal);

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 0.95rem;
    line-height: 1.5;

    font-feature-settings:
        "cv02",
        "cv03",
        "cv04",
        "cv11";
}

a {
    color: var(--ms-orange-dark);
}

a:hover {
    color: var(--ms-orange);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    font-weight: 650;
    letter-spacing: -0.015em;
}

.msb-brand-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.table thead th,
table.dataTable thead th {
    font-weight: 650;
    letter-spacing: 0.025em;
}

.text-secondary {
    color: var(--ms-gray-600) !important;
}

.small,
small {
    font-size: 0.84rem;
}

button,
input,
select,
textarea,
.form-control,
.form-select,
.btn {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

table,
.dataTable,
.dt-container {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.msb-account-number,
.msb-number,
td[data-type="account"] {
    font-variant-numeric: tabular-nums;
}

/* =========================================================
   NAVIGATION
========================================================= */

.msb-navbar {
    min-height: 68px;
    background: var(--ms-white);
    border-top: 4px solid var(--ms-orange);
    border-bottom: 1px solid var(--ms-gray-300);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.msb-navbar .container-fluid {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
}

.msb-nav-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.msb-brand-title {
    display: block;
    color: var(--ms-charcoal);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.1;
}

.msb-brand-subtitle {
    display: block;
    margin-top: 0.16rem;
    color: var(--ms-gray-600);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.1;
}

.msb-navbar .navbar-nav {
    margin-left: 1.25rem;
}

.msb-navbar .nav-link {
    color: var(--ms-gray-700);
    font-size: 0.92rem;
    font-weight: 550;
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
}

.msb-navbar .nav-link:hover,
.msb-navbar .nav-link:focus {
    color: var(--ms-orange);
}

.msb-navbar .dropdown-menu {
    font-size: 0.9rem;
    border-color: var(--ms-gray-300);
    box-shadow: var(--ms-shadow-md);
}

.msb-navbar .dropdown-item:active {
    background: var(--ms-orange);
}

.navbar .nav-link {
    position: relative;
}
/*
.navbar .nav-link.active {
    color: #212529;
    font-weight: 600;
}
*/
.dropdown-toggle::after {
    border-top: 0 !important;
}
.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: -0.95rem;
    height: 2px;
    background: var(--ms-orange, #f15a24);
    border-radius: 2px;
}


/* =========================================================
   MAIN / PAGE
========================================================= */

.msb-main {
    min-height: calc(100vh - 145px);
}

.msb-section {
    background: var(--ms-white);
    border: 1px solid var(--ms-gray-300);
    border-radius: var(--ms-radius);
    padding: 1.25rem;
    box-shadow: var(--ms-shadow-sm);
}

.msb-section h2 {
    color: var(--ms-charcoal);
}

.msb-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}


/* =========================================================
   POSTING WINDOW
========================================================= */

.msb-window-panel {
    position: relative;
    height: 100%;
    min-height: 150px;
    background: #fafafa;
    border: 1px solid var(--ms-gray-300);
    border-left: 5px solid var(--ms-gray-500);
    border-radius: var(--ms-radius);
    padding: 1rem 1.15rem;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

.msb-window-panel.is-current {
    background: var(--ms-green-soft);
    border-color: var(--ms-green);
    border-left-color: var(--ms-green);
    box-shadow: var(--ms-shadow-sm);
}

.msb-window-heading {
    margin-bottom: 0.55rem;
    color: var(--ms-charcoal);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.msb-window-panel.is-current .msb-window-heading {
    color: var(--ms-green-dark);
}

.msb-window-panel.is-current::after {
    content: "CURRENT";
    position: absolute;
    top: 0.7rem;
    right: 0.8rem;
    padding: 0.18rem 0.45rem;
    background: var(--ms-green);
    color: #fff;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}


/* =========================================================
   DASHBOARD ACTION TILES
========================================================= */

.msb-action-tile {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 82px;

    padding: 0.9rem 1rem;

    background: var(--ms-white);
    border: 1px solid var(--ms-gray-300);
    border-radius: var(--ms-radius);

    color: var(--ms-charcoal);
    text-align: left;
    text-decoration: none;

    box-shadow: none;

    transition:
        transform 0.1s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}

button.msb-action-tile {
    appearance: none;
}

.msb-action-tile:hover {
    color: var(--ms-charcoal);
    transform: translateY(-1px);
    box-shadow: var(--ms-shadow-sm);
}

.msb-action-tile strong {
    display: block;
    margin-bottom: 0.08rem;
    font-size: 1rem;
}

.msb-action-tile small {
    display: block;
    color: var(--ms-gray-600);
    font-size: 0.88rem;
}

.msb-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    font-size: 1.15rem;
}

.msb-action-add {
    border-left: 4px solid var(--ms-green);
    background: var(--ms-green-soft);
}

.msb-action-add .msb-action-icon {
    color: var(--ms-green-soft);
    background: var(--ms-green);
}

.msb-action-add:hover {
    border-color: var(--ms-green);
}

.msb-action-remove {
    border-left: 4px solid var(--ms-red);
    background: var(--ms-red-soft);
}

.msb-action-remove .msb-action-icon {
    color: var(--ms-red-soft);
    background: var(--ms-red);
}

.msb-action-remove:hover {
    border-color: var(--ms-red);
}

.msb-action-transfer {
    border-left: 4px solid var(--ms-orange);
    background: var(--ms-orange-soft);
}

.msb-action-transfer .msb-action-icon {
    color: var(--ms-orange-soft);
    background: var(--ms-orange);
}

.msb-action-transfer:hover {
    border-color: var(--ms-orange);
}

.msb-action-snapshot {
    border-left: 4px solid var(--ms-teal);
    background: var(--ms-teal-soft);
}

.msb-action-snapshot .msb-action-icon {
    color: var(--ms-teal-soft);
    background: var(--ms-teal);
}

.msb-action-snapshot:hover {
    border-color: var(--ms-teal);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-ms-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--ms-orange);
    --bs-btn-border-color: var(--ms-orange);

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--ms-orange-dark);
    --bs-btn-hover-border-color: var(--ms-orange-dark);

    --bs-btn-focus-shadow-rgb: 241, 90, 36;

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--ms-orange-dark);
    --bs-btn-active-border-color: var(--ms-orange-dark);
}

.btn-ms-green {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--ms-green);
    --bs-btn-border-color: var(--ms-green);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--ms-green-dark);
    --bs-btn-hover-border-color: var(--ms-green-dark);
}

.btn {
    font-size: 0.9rem;
    font-weight: 550;
}

.btn-sm {
    font-size: 0.84rem;
}


/* =========================================================
   FORMS
========================================================= */

.form-label {
    margin-bottom: 0.35rem;
    color: var(--ms-gray-700);
    font-size: 0.84rem;
    font-weight: 650;
}

.form-control,
.form-select {
    min-height: 39px;
    border-color: #ced4da;
    border-radius: var(--ms-radius-sm);
    font-size: 0.94rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #ef956f;
    box-shadow: 0 0 0 0.2rem rgba(241, 90, 36, 0.12);
}

.form-control[readonly] {
    background: #f1f3f4;
    color: var(--ms-gray-700);
}

.form-check-input:checked {
    background-color: var(--ms-orange);
    border-color: var(--ms-orange);
}

.form-text {
    color: var(--ms-gray-600);
    font-size: 0.78rem;
}


/* =========================================================
   MODALS
========================================================= */

.modal-content {
    border: 0;
    border-radius: 0.6rem;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
}

.modal-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--ms-gray-300);
}

.modal-title {
    font-size: 1.08rem;
    font-weight: 700;
}

.modal-body {
    padding: 1.25rem;
}

.modal-footer {
    padding: 0.8rem 1.25rem;
    background: #fafafa;
    border-top: 1px solid var(--ms-gray-300);
}


/* =========================================================
   SEARCH RESULTS / TYPEAHEAD
========================================================= */

.msb-search-results {
    position: relative;
    z-index: 1055;
    width: 100%;
    max-height: 320px;
    overflow-y: auto;

    margin-top: 0.25rem;

    background: var(--ms-white);
    border: 1px solid var(--ms-gray-300);
    border-radius: var(--ms-radius-sm);

    box-shadow: var(--ms-shadow-md);
}

.msb-search-results:empty {
    display: none;
}

.msb-search-result {
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 0.1rem 0.75rem;

    width: 100%;
    padding: 0.7rem 0.8rem;

    background: #fff;
    border: 0;
    border-bottom: 1px solid #eceff1;

    color: var(--ms-charcoal);
    text-align: left;
}

.msb-search-result:last-child {
    border-bottom: 0;
}

.msb-search-result:hover,
.msb-search-result:focus {
    background: var(--ms-orange-soft);
}

.msb-search-result strong {
    grid-row: 1 / span 3;
    color: var(--ms-orange-dark);
    font-variant-numeric: tabular-nums;
}

.msb-search-result span {
    font-weight: 650;
}

.msb-search-result small {
    color: var(--ms-gray-600);
}

.msb-search-empty {
    padding: 0.8rem;
    color: var(--ms-gray-600);
    font-size: 0.88rem;
}


/* =========================================================
   CALCULATOR RESULTS
========================================================= */

.msb-result-box {
    padding: 1rem 1.1rem;
    background: var(--ms-teal-soft);
    border: 1px solid #cce9ed;
    border-left: 4px solid var(--ms-teal);
    border-radius: var(--ms-radius-sm);
}


/* =========================================================
   ALERTS
========================================================= */

.alert {
    border-radius: var(--ms-radius-sm);
    font-size: 0.88rem;
}

.alert-success {
    background: var(--ms-green-soft);
    border-color: #c7e2d7;
    color: var(--ms-green-dark);
}

.alert-danger {
    background: var(--ms-red-soft);
    border-color: #f0c9c6;
    color: #9f2923;
}

.alert-warning {
    background: var(--ms-gold-soft);
    border-color: #ecd9a9;
    color: #755817;
}


/* =========================================================
   CARDS
========================================================= */

.card {
    border-color: var(--ms-gray-300);
    border-radius: var(--ms-radius);
    box-shadow: none;
}

.card-header {
    background: #fafafa;
    border-bottom-color: var(--ms-gray-300);
    font-weight: 650;
}


/* =========================================================
   TABLES / DATATABLES
========================================================= */

.table {
    margin-bottom: 0;
    --bs-table-striped-bg: #f8f9fa;
}

.table > :not(caption) > * > * {
    padding: 0.52rem 0.62rem;
    vertical-align: middle;
}

.table thead th,
table.dataTable thead th {
    background: #f3f4f5;
    color: var(--ms-gray-700);
    border-bottom: 1px solid #cfd4d9 !important;

    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    white-space: nowrap;
}

.table tbody td {
    color: #40454a;
    font-size: 0.88rem;
}

.table-hover tbody tr:hover > * {
    --bs-table-bg-state: #fff9f6;
}

.dt-container {
    font-size: 0.88rem;
}

.dt-container .dt-search,
.dt-container .dt-length {
    margin-bottom: 0.8rem;
}

.dt-container .dt-search label,
.dt-container .dt-length label {
    color: var(--ms-gray-600);
    font-size: 0.86rem;
}

.dt-container .dt-input {
    min-height: 34px;
    border: 1px solid #ced4da !important;
    border-radius: var(--ms-radius-sm) !important;
    font-size: 0.86rem;
}

.dt-container .dt-info {
    color: var(--ms-gray-600);
    font-size: 0.86rem;
}

.dt-container .pagination {
    --bs-pagination-font-size: 0.82rem;
}

.page-link {
    color: var(--ms-charcoal);
}

.active > .page-link,
.page-link.active {
    background: var(--ms-orange);
    border-color: var(--ms-orange);
}


/* =========================================================
   STATUS BADGES
========================================================= */

.msb-status {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;

    padding: 0.22rem 0.5rem;

    border-radius: 999px;

    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1;
}

.msb-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.msb-status-active {
    background: var(--ms-green-soft);
    color: var(--ms-green-dark);
}

.msb-status-active-delinquency {
    background: var(--ms-red-soft);
    color: var(--ms-red-dark);
}
.msb-status-active-delinquency::before {
    background: var(--ms-red);
}

.msb-status-active::before {
    background: var(--ms-green);
}

.msb-status-pending {
    background: var(--ms-orange-soft);
    color: var(--ms-orange-dark);
}

.msb-status-pending::before {
    background: var(--ms-orange);
}

.msb-status-review {
    background: var(--ms-gold-soft);
    color: #755817;
}

.msb-status-review::before {
    background: var(--ms-gold);
}

.msb-status-removed {
    background: #eef0f2;
    color: var(--ms-gray-600);
}

.msb-status-removed-delinquency {
    background: var(--ms-green-soft);
    color: var(--ms-green-dark);
}

.msb-status-removed-delinquency::before {
    background: var(--ms-green);
}

.msb-status-removed::before {
    background: var(--ms-gray-500);
}


/* =========================================================
   LOGIN
========================================================= */

.msb-login-body {
    min-height: 100vh;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            145deg,
            #f8f9fa 0%,
            #eff1f3 100%
        );
}

.msb-login-card {
    padding: 2rem;

    background: var(--ms-white);
    border: 1px solid var(--ms-gray-300);
    border-top: 5px solid var(--ms-orange);
    border-radius: 0.65rem;

    box-shadow: var(--ms-shadow-md);
}

.msb-login-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}


/* =========================================================
   FOOTER
========================================================= */

.msb-footer {
    padding: 1rem 1.4rem;

    background: #292d31;
    color: #d8dadd;

    border-top: 3px solid var(--ms-orange);

    font-size: 0.78rem;
}

.msb-footer strong {
    color: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .msb-navbar .navbar-nav {
        margin-left: 0;
        margin-top: 0.8rem;
    }

    .msb-navbar .nav-link {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

}

@media (max-width: 767.98px) {

    body {
        font-size: 0.92rem;
    }

    .msb-section {
        padding: 1rem;
    }

    .msb-window-panel {
        min-height: 0;
    }

    .msb-action-tile {
        min-height: 72px;
    }

    .modal-dialog {
        margin: 0.75rem;
    }

}

/* =========================================================
   PAGE HEADINGS
========================================================= */

.msb-page-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 650;
    letter-spacing: -0.035em;
}

.msb-page-subtitle {
    margin-top: 0.25rem;
    color: var(--ms-gray-600);
    font-size: 0.88rem;
}


/* =========================================================
   REPORT METRICS
========================================================= */

.msb-report-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.msb-report-card {
    display: flex;
    flex-direction: column;

    min-height: 170px;
    padding: 1rem 1.1rem;

    background: #fff;
    border: 1px solid var(--ms-gray-300);
    border-radius: var(--ms-radius);

    color: var(--ms-charcoal);
    text-decoration: none;

    transition:
        transform 0.12s ease,
        border-color 0.12s ease,
        box-shadow 0.12s ease;
}

.msb-report-card:hover {
    color: var(--ms-charcoal);
    border-color: #c8ccd0;
    box-shadow: var(--ms-shadow-sm);
    transform: translateY(-1px);
    background: var(--ms-green-soft);
    border: 1px solid var(--ms-green);
}

.msb-report-card:hover .msb-report-card-icon {
    background: var(--ms-green);
    color: var(--ms-green-soft);
}

.msb-report-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;

    margin-bottom: 1rem;
}

.msb-report-card-title {
    color: var(--ms-gray-700);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.msb-report-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    border-radius: 50%;
    background: var(--ms-green-soft);
    color: var(--ms-green);

    font-size: 0.96rem;
}

.msb-report-number {
    margin-bottom: 0.15rem;

    color: var(--ms-charcoal);

    font-size: 2.1rem;
    font-weight: 650;
    line-height: 1;

    font-variant-numeric: tabular-nums;
    letter-spacing: -0.05em;
}

.msb-report-description {
    min-height: 38px;
    margin-bottom: 1rem;

    color: var(--ms-gray-600);
    font-size: 0.88rem;
}

.msb-report-link {
    margin-top: auto;

    color: var(--ms-green);
    font-size: 0.82rem;
    font-weight: 600;
}

.msb-report-card:hover .msb-report-link {
    color: var(--ms-green-dark);
}


/* =========================================================
   REPORT PAGE
========================================================= */

.msb-report-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    margin-bottom: 1rem;
}

.msb-report-date {
    color: var(--ms-gray-600);
    font-size: 0.86rem;
}

.msb-report-table-wrap {
    background: #fff;
    border: 1px solid var(--ms-gray-300);
    border-radius: var(--ms-radius);
    padding: 1rem;
}


/* DataTables Buttons */

.dt-buttons .btn {
    margin-right: 0.3rem;

    background: #fff;
    border-color: #cfd4d9;

    color: var(--ms-gray-700);

    font-size: 0.78rem;
}

.dt-buttons .btn:hover {
    background: var(--ms-green-soft);
    border-color: var(--ms-green);
    color: var(--ms-green-dark);
}


/* =========================================================
   RESPONSIVE REPORTS
========================================================= */

@media (max-width: 1199.98px) {

    .msb-report-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 575.98px) {

    .msb-report-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   ACTIVE HEADER NAV
========================================================= */

.msb-nav-link {
    position: relative;
}

.msb-nav-link.active {
    color: var(--ms-charcoal) !important;
    font-weight: 600;
}

.msb-nav-link.active::after {
    content: "";
    position: absolute;

    left: 0.8rem;
    right: 0.8rem;
    bottom: -1.05rem;

    height: 3px;

    background: var(--ms-orange);
    border-radius: 3px 3px 0 0;
}

.msb-welcome-text {
    color: var(--ms-gray-600);
    font-size: 0.84rem;
    white-space: nowrap;
}

.msb-welcome-text strong {
    color: var(--ms-charcoal);
    font-weight: 600;
}

.msb-account-menu {
    border: 0;
    background: transparent;
    color: var(--ms-gray-700);
}

.msb-account-menu:hover,
.msb-account-menu:focus {
    background: var(--ms-gray-100);
    color: var(--ms-charcoal);
}

.msb-search-result {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0.85rem;

    width: 100%;
    padding: 0.8rem 0.9rem;

    background: #fff;
    border: 0;
    border-bottom: 1px solid #eceff1;

    color: var(--ms-charcoal);
    text-align: left;
}

.msb-search-result:last-child {
    border-bottom: 0;
}

.msb-search-result:hover,
.msb-search-result:focus {
    background: var(--ms-orange-soft);
}

.msb-search-account {
    padding-top: 0.05rem;

    color: var(--ms-orange-dark);
    font-size: 0.95rem;
    font-weight: 700;

    font-variant-numeric: tabular-nums;
}

.msb-search-details {
    min-width: 0;
}

.msb-search-name {
    color: var(--ms-charcoal);
    font-size: 0.92rem;
    font-weight: 700;
}

.msb-search-dba {
    margin-top: 0.12rem;

    color: var(--ms-gray-600);
    font-size: 0.82rem;
}

.msb-search-town {
    margin-top: 0.12rem;

    color: var(--ms-gray-600);
    font-size: 0.82rem;
}

.msb-search-abcc {
    margin-top: 0.15rem;

    color: var(--ms-green-dark);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================================
   STICKY APPLICATION NAV
   ============================================================ */

.msb-nav,
.msb-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.msb-nav {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

