/* ==========================================================
   JCT PREMIUM SIDEBAR
   Shared by _Layout.cshtml and _AccountLayout.cshtml
   ========================================================== */

:root {
    --jct-sb-w: 292px;
    --jct-blue-950: #031946;
    --jct-blue-900: #063176;
    --jct-blue-800: #0648a8;
    --jct-blue-700: #075fd6;
    --jct-cyan: #49d7ff;
    --jct-ice: #eef8ff;
    --jct-gold: #ffe4a3;
}

.azure-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(3, 15, 40, .58);
    z-index: 1049;
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: opacity .28s ease;
}

.azure-sidebar-overlay.show {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

#azureSidebar {
    width: var(--jct-sb-w);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    color: #fff;
    z-index: 1050;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: auto;
    text-rendering: optimizeLegibility;
    background:
        radial-gradient(circle at 14% 0%, rgba(73, 215, 255, .30), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(0, 117, 255, .32), transparent 34%),
        linear-gradient(180deg, #044fbd 0%, #033d97 32%, #052d75 64%, #061f55 100%);
    box-shadow: 16px 0 44px rgba(2, 18, 54, .24);
    transform: translateX(0);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

#azureSidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.10), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,.10), transparent 16%);
}

#azureSidebar.hidden {
    transform: translateX(calc(-1 * var(--jct-sb-w)));
}

#azureSidebar .sb-brand,
#azureSidebar .sb-usr,
#azureSidebar .sb-nv,
#azureSidebar .sb-ft {
    position: relative;
    z-index: 1;
}

#azureSidebar .sb-brand {
    min-height: 126px;
    padding: 16px 15px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 22, 72, .24);
    display: flex;
    align-items: center;
    gap: 10px;
}

#azureSidebar .sb-brand-link {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    color: #fff !important;
    text-decoration: none !important;
    min-width: 0;
    flex: 1;
}

#azureSidebar .sb-logo-plate {
    width: 100%;
    min-height: 62px;
    padding: 8px 10px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: 0 18px 34px rgba(0, 18, 70, .26), inset 0 1px 0 rgba(255,255,255,.95);
    overflow: hidden;
}

#azureSidebar .sb-logo-plate img {
    display: block;
    width: 100%;
    max-width: 230px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

#azureSidebar .sb-logo-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.28), rgba(255,255,255,.08)),
        linear-gradient(135deg, #073a98, #0b7bff);
    border: 1px solid rgba(255,255,255,.32);
    box-shadow: 0 16px 34px rgba(0, 18, 70, .30), inset 0 1px 0 rgba(255,255,255,.32);
    position: relative;
    overflow: hidden;
}

#azureSidebar .sb-logo-mark img {
    max-width: 34px;
    max-height: 34px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

#azureSidebar .sb-logo-mark i {
    display: none;
    font-size: 25px;
    color: #fff;
}

#azureSidebar .sb-logo-mark img[src=""],
#azureSidebar .sb-logo-mark img:not([src]) {
    display: none;
}

#azureSidebar .sb-brand-copy {
    min-width: 0;
    text-align: center;
}

#azureSidebar .sb-brand-copy strong {
    display: block;
    color: #fff;
    font-size: 13.4px;
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 700;
    text-shadow: none;
}

#azureSidebar .sb-brand-copy small {
    display: block;
    margin-top: 3px;
    color: #d9ecff;
    font-size: 9.5px;
    line-height: 1;
    letter-spacing: .9px;
    text-transform: uppercase;
    font-weight: 700;
}

#azureSidebar .sb-cls {
    display: none;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,.12);
    cursor: pointer;
}

#azureSidebar .sb-cls:hover {
    background: rgba(255,255,255,.22);
}

#azureSidebar .sb-usr {
    margin: 14px 15px 8px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 12px 28px rgba(0,0,0,.12);
}

#azureSidebar .sb-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    color: #073176;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #d9ecff);
    border: 3px solid rgba(255,255,255,.50);
    box-shadow: 0 10px 24px rgba(0, 24, 82, .22);
}

#azureSidebar .sb-nm {
    color: #fff;
    font-size: 13.2px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
}

#azureSidebar .sb-rl {
    margin-top: 2px;
    color: #cde4fb;
    font-size: 11.2px;
    font-weight: 500;
    letter-spacing: 0;
}

#azureSidebar .sb-nv {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 13px 18px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.28) transparent;
}

#azureSidebar .sb-nv::-webkit-scrollbar {
    width: 5px;
}

#azureSidebar .sb-nv::-webkit-scrollbar-track {
    background: transparent;
}

#azureSidebar .sb-nv::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.25);
    border-radius: 20px;
}

#azureSidebar .sb-sc {
    padding: 18px 8px 9px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d8ebff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

#azureSidebar .sb-sc::after {
    content: "";
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, rgba(255,255,255,.20), transparent);
}

#azureSidebar .sb-it {
    margin: 5px 0;
}

#azureSidebar .sb-lk {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    color: #f7fbff !important;
    text-decoration: none !important;
    border-radius: 16px;
    font-size: 13.4px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.22;
    position: relative;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.075);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    overflow: hidden;
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

#azureSidebar .sb-lk::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,.16), transparent 46%),
        radial-gradient(circle at 0% 50%, rgba(73,215,255,.22), transparent 42%);
    transition: opacity .18s ease;
}

#azureSidebar .sb-lk > i {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    flex: 0 0 31px;
    color: #ecf8ff;
    font-size: 13px;
    border-radius: 11px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.07)),
        rgba(6, 103, 225, .32);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.13), 0 8px 16px rgba(0, 19, 70, .14);
    transition: color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

#azureSidebar .sb-lk span:not(.sb-ar) {
    min-width: 0;
    position: relative;
    z-index: 1;
    text-shadow: none;
}

#azureSidebar .sb-lk:hover,
#azureSidebar .sb-lk.ac,
#azureSidebar .sb-lk[aria-expanded="true"] {
    color: #fff !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,.21), rgba(255,255,255,.095)),
        rgba(6, 99, 220, .22);
    border-color: rgba(255,255,255,.24);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 13px 26px rgba(0, 25, 86, .22);
    transform: translateX(4px);
}

#azureSidebar .sb-lk:hover::after,
#azureSidebar .sb-lk.ac::after,
#azureSidebar .sb-lk[aria-expanded="true"]::after {
    opacity: 1;
}

#azureSidebar .sb-lk:hover > i,
#azureSidebar .sb-lk.ac > i,
#azureSidebar .sb-lk[aria-expanded="true"] > i {
    color: #fff;
    background: linear-gradient(135deg, #118dff 0%, #0845b8 100%);
    box-shadow: 0 10px 20px rgba(0, 50, 160, .28), inset 0 1px 0 rgba(255,255,255,.22);
    transform: scale(1.04);
}

#azureSidebar .sb-lk.ac::before,
#azureSidebar .sb-lk[aria-expanded="true"]::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff, var(--jct-cyan));
    box-shadow: 0 0 16px rgba(73,215,255,.70);
}

#azureSidebar .sb-ar {
    margin-left: auto;
    color: #cce6ff;
    font-size: 10px;
    position: relative;
    z-index: 1;
    transition: transform .20s ease;
}

#azureSidebar .sb-lk[aria-expanded="true"] .sb-ar {
    transform: rotate(90deg);
}

#azureSidebar .sb-sb {
    list-style: none;
    margin: 6px 0 7px;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    border-radius: 17px;
    background:
        linear-gradient(180deg, rgba(1,22,74,.43), rgba(2,18,61,.27));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    transition: max-height .32s cubic-bezier(.4, 0, .2, 1), padding .18s ease;
}

#azureSidebar .sb-sb.op {
    max-height: 2400px;
    padding: 6px;
}

#azureSidebar .sb-sb .sb-lk {
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 12px;
    color: #e9f5ff !important;
    font-size: 12.6px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.24;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

#azureSidebar .sb-sb .sb-lk > i {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
    margin-left: 0;
    font-size: 9px;
    border-radius: 8px;
    color: #d9ecff;
    background: rgba(255,255,255,.075);
    border-color: rgba(255,255,255,.06);
    box-shadow: none;
}

#azureSidebar .sb-sb .sb-lk:hover,
#azureSidebar .sb-sb .sb-lk.ac {
    color: #fff !important;
    transform: translateX(2px);
    background: rgba(255,255,255,.105);
    border-color: rgba(255,255,255,.13);
}

#azureSidebar .sb-grid {
    display: block;
}

#azureSidebar .sb-grid .sb-lk {
    padding-left: 10px;
}

#azureSidebar .sb-call {
    background:
        linear-gradient(135deg, rgba(255,255,255,.24), rgba(73,215,255,.17)),
        rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.22);
}

#azureSidebar .sb-ft {
    padding: 14px 16px 16px;
    border-top: 1px solid rgba(255,255,255,.14);
    background: rgba(0, 16, 56, .25);
}

#azureSidebar .sb-ft a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #073176 !important;
    background: linear-gradient(135deg, #ffffff, #dcebff);
    border-radius: 14px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: 0 12px 26px rgba(0, 21, 71, .22);
}

#azureSidebar .sb-ft a:hover {
    color: #02225d !important;
    transform: translateY(-1px);
}

#sbToggleBtn {
    display: none !important;
    position: static;
    width: auto;
    min-width: 76px;
    min-height: 34px;
    padding: 7px 12px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #0749bd, #0799ff);
    box-shadow: 0 12px 26px rgba(5, 69, 168, .28);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    transition: transform .18s ease, box-shadow .18s ease;
}

#sbToggleBtn:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 18px 36px rgba(5, 69, 168, .46);
}

.jct-mobile-quickbar {
    display: none;
}

#sbDesktopToggleBtn {
    position: absolute;
    top: 20px;
    left: calc(var(--jct-sb-w) + 22px);
    z-index: 1047;
    width: 38px;
    height: 38px;
    min-height: 38px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(7, 95, 214, .16);
    border-radius: 50%;
    color: #063176;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,247,255,.94)),
        #fff;
    outline: 5px solid rgba(244, 249, 255, .96);
    box-shadow: 0 12px 26px rgba(5, 43, 120, .16);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0;
    cursor: pointer;
    transition: left .28s cubic-bezier(.4, 0, .2, 1), transform .18s ease, box-shadow .18s ease, background .18s ease;
}

#sbDesktopHomeBtn {
    position: absolute;
    top: 20px;
    left: calc(var(--jct-sb-w) + 72px);
    z-index: 1047;
    width: 38px;
    height: 38px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 95, 214, .16);
    border-radius: 50%;
    color: #063176 !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,247,255,.94)),
        #fff;
    outline: 5px solid rgba(244, 249, 255, .96);
    box-shadow: 0 12px 26px rgba(5, 43, 120, .16);
    text-decoration: none !important;
    transition: left .28s cubic-bezier(.4, 0, .2, 1), transform .18s ease, box-shadow .18s ease, background .18s ease;
}

#sbDesktopToggleBtn i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, #075fd6, #0799ff);
    box-shadow: 0 8px 15px rgba(7, 95, 214, .28);
}

#sbDesktopHomeBtn i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, #075fd6, #0799ff);
    box-shadow: 0 8px 15px rgba(7, 95, 214, .28);
}

#sbDesktopToggleBtn:hover,
#sbDesktopHomeBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(5, 43, 120, .22);
}

#sbDesktopToggleBtn.is-collapsed {
    left: 22px;
    color: #fff;
    background: linear-gradient(135deg, #063176, #075fd6);
    border-color: rgba(255,255,255,.22);
    outline-color: rgba(255, 255, 255, .92);
}

#sbDesktopToggleBtn.is-collapsed i {
    color: #0641a9;
    background: #fff;
}

#sbDesktopToggleBtn.is-collapsed + #sbDesktopHomeBtn {
    left: 72px;
}

#sbDesktopBrand {
    position: absolute;
    top: 14px;
    left: 190px;
    z-index: 1046;
    width: 360px;
    height: 54px;
    display: none;
    align-items: center;
    justify-content: flex-start;
    padding: 3px 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.70) 72%, rgba(255,255,255,0) 100%);
    border: 0;
    box-shadow: none;
    text-decoration: none !important;
    overflow: visible;
    transition: transform .18s ease, box-shadow .18s ease;
}

#sbDesktopBrand img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 48px;
    object-fit: contain;
    object-position: left center;
}

#sbDesktopBrand:hover {
    transform: translateY(-1px);
    box-shadow: none;
}

#sbDesktopBrand.is-collapsed {
    display: inline-flex;
}

#azureContentWrapper {
    margin-left: var(--jct-sb-w);
    min-height: 100vh;
    transition: margin-left .28s cubic-bezier(.4, 0, .2, 1);
    background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 52%);
}

#azureContentWrapper.full {
    margin-left: 0;
}

@media (min-width: 992px) {
    #azureSidebar.hidden + #azureContentWrapper,
    #azureSidebar.hidden ~ #azureContentWrapper {
        margin-left: 0 !important;
    }
}

@media (max-width: 991px) {
    #sbDesktopToggleBtn,
    #sbDesktopHomeBtn {
        display: none !important;
    }

    #sbDesktopBrand {
        display: none !important;
    }

    .jct-mobile-quickbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1048;
        display: block;
        padding: 8px 10px 9px;
        background:
            radial-gradient(circle at 16% 0%, rgba(73, 215, 255, .22), transparent 30%),
            linear-gradient(135deg, #052b78 0%, #075fd6 100%);
        box-shadow: 0 12px 28px rgba(4, 31, 85, .20);
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .jct-mobile-topline {
        display: flex;
        align-items: center;
    }

    .jct-mobile-brand {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        height: clamp(64px, 15vw, 82px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 12px;
        border-radius: 18px;
        background:
            linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,247,255,.96)),
            #fff;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.98),
            0 10px 24px rgba(0,22,82,.22);
        overflow: hidden;
    }

    .jct-mobile-brand img {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 66px;
        object-fit: contain;
    }

    .jct-mobile-actions {
        margin-top: 8px;
        display: flex;
        gap: 7px;
        overflow-x: auto;
        padding-bottom: 1px;
        scrollbar-width: none;
    }

    .jct-mobile-actions::-webkit-scrollbar {
        display: none;
    }

    .jct-mobile-actions a,
    .jct-mobile-actions #sbToggleBtn {
        flex: 0 0 auto;
        min-height: 34px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 12px;
        border-radius: 999px;
        color: #073176 !important;
        background: rgba(255,255,255,.94);
        border: 1px solid rgba(255,255,255,.70);
        text-decoration: none !important;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0;
        box-shadow: 0 6px 15px rgba(0, 24, 86, .15);
        white-space: nowrap;
    }

    .jct-mobile-actions a i {
        color: #075fd6;
        font-size: 12px;
    }

    .jct-mobile-actions #sbToggleBtn {
        color: #fff !important;
        background: linear-gradient(135deg, #0a7cff 0%, #0643af 100%);
        border-color: rgba(255,255,255,.35);
        box-shadow: 0 7px 16px rgba(0, 34, 118, .24);
    }

    .jct-mobile-actions #sbToggleBtn i {
        color: #fff;
    }

    #azureSidebar {
        transform: translateX(calc(-1 * var(--jct-sb-w)));
        visibility: hidden;
    }

    #azureSidebar.mv,
    body.jct-sidebar-mobile-open #azureSidebar {
        transform: translateX(0) !important;
        visibility: visible;
        z-index: 1052;
        box-shadow: 18px 0 60px rgba(0,0,0,.36);
    }

    body.jct-sidebar-mobile-open {
        overflow: hidden;
    }

    #azureSidebar .sb-cls {
        display: grid;
        place-items: center;
    }

    #azureContentWrapper {
        margin-left: 0 !important;
        padding-top: 130px !important;
    }

    #sbToggleBtn {
        display: flex !important;
    }

    .azure-sidebar-overlay {
        display: block;
        pointer-events: none;
    }

    .azure-sidebar-overlay.show {
        pointer-events: auto;
    }

    #header,
    #header .header-container,
    #header .header-top,
    #header .header-top .header-row,
    #header .header-top .header-nav-top,
    #header .header-top .nav-pills,
    #header .header-nav-main,
    #header .header-btn-collapse-nav,
    #header .header-nav-features {
        display: none !important;
    }

    #header .header-body {
        border-bottom: none !important;
    }

    .body {
        padding-top: 0 !important;
    }
}

@media (min-width: 992px) {
    #sbToggleBtn {
        display: none !important;
    }

    #sbDesktopToggleBtn {
        display: inline-flex;
    }

    #sbDesktopHomeBtn {
        display: inline-flex;
    }

    #sbDesktopBrand.is-collapsed + #azureSidebar.hidden ~ #azureContentWrapper {
        margin-left: 0 !important;
    }

    #header .header-top {
        background:
            radial-gradient(circle at 8% 0%, rgba(7, 153, 255, .10), transparent 28%),
            linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,249,255,.96)) !important;
        border-bottom: 1px solid rgba(7, 95, 214, .10) !important;
        box-shadow: 0 10px 24px rgba(5, 43, 120, .07);
    }

    #header .header-top > .container,
    #header .header-top > .container-xl-custom {
        max-width: 100%;
    }

    #header .header-top .header-row.py-2 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    #header .header-top .header-row {
        width: 100%;
    }

    #header .header-top .header-column {
        flex: 1 1 auto;
        min-width: 0;
    }

    #header .header-top .header-column.justify-content-end > .header-row {
        justify-content: flex-end;
        min-width: 0;
        overflow: visible;
        padding-left: 132px;
        padding-right: 14px;
    }

    #header .header-nav-top {
        width: 100%;
    }

    #header .header-nav-top.jct-top-links-nav {
        flex: 0 1 auto;
        margin-left: auto;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-color: rgba(7, 95, 214, .45) transparent;
        scrollbar-width: thin;
        width: auto;
    }

    #header .header-nav-top .nav.nav-pills {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 7px;
        margin: 0;
    }

    #header .header-nav-top .nav.nav-pills.jct-top-links {
        flex-wrap: nowrap;
        justify-content: flex-end;
        min-width: 0;
        padding-left: 0;
        width: auto;
    }

    #azureSidebar.hidden ~ #azureContentWrapper #header .header-nav-top .nav.nav-pills.jct-top-links {
        padding-left: 0 !important;
    }

    #azureSidebar:not(.hidden) ~ #azureContentWrapper #header .header-nav-top .nav.nav-pills.jct-top-links {
        padding-left: 0 !important;
    }

    #azureSidebar.hidden ~ #azureContentWrapper #header .header-nav-top.jct-top-links-nav {
        max-width: 100%;
    }

    #azureSidebar:not(.hidden) ~ #azureContentWrapper #header .header-nav-top.jct-top-links-nav {
        max-width: 100%;
        overflow-x: auto;
    }

    #azureSidebar:not(.hidden) ~ #azureContentWrapper #header .header-nav-top .nav.nav-pills.jct-top-links {
        gap: 6px;
    }

    #azureSidebar:not(.hidden) ~ #azureContentWrapper #header .header-nav-top .jct-top-links > li.jct-info-link > a.nav-link {
        width: auto;
        padding: 8px 12px !important;
        border-radius: 999px;
    }

    #azureSidebar:not(.hidden) ~ #azureContentWrapper #header .header-nav-top .jct-top-links > li.jct-info-link .jct-link-label {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
        overflow: visible;
        clip: auto;
        border: 0;
        white-space: nowrap;
    }

    #header .header-nav-top .nav > li.nav-item {
        margin: 0 !important;
    }

    #header .header-nav-top .nav > li > a.nav-link,
    #header .header-nav-top .nav > li .jct-header-logout-btn {
        width: auto;
        height: 38px;
        min-height: 38px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 8px 12px !important;
        border-radius: 999px;
        color: #063176 !important;
        background:
            linear-gradient(180deg, rgba(255,255,255,.98), rgba(236,246,255,.95)),
            #fff;
        border: 1px solid rgba(7, 95, 214, .15);
        box-shadow: 0 8px 18px rgba(5, 43, 120, .08);
        text-decoration: none !important;
        font-size: 12.6px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 1.15;
        white-space: nowrap;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: subpixel-antialiased;
        -moz-osx-font-smoothing: auto;
        transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    }

    #header .header-nav-top .nav > li .jct-link-label {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
        overflow: visible;
        clip: auto;
        border: 0;
        white-space: nowrap;
    }

    #header .header-nav-top .nav > li > a.nav-link:hover,
    #header .header-nav-top .nav > li > a.nav-link:focus,
    #header .header-nav-top .nav > li .jct-header-logout-btn:hover,
    #header .header-nav-top .nav > li .jct-header-logout-btn:focus {
        color: #fff !important;
        background: linear-gradient(135deg, #075fd6 0%, #073f9f 100%);
        border-color: rgba(7, 95, 214, .34);
        box-shadow: 0 12px 24px rgba(7, 95, 214, .18);
        transform: translateY(-1px);
    }

    #header .header-nav-top .nav > li > a.nav-link i,
    #header .header-nav-top .nav > li .jct-header-logout-btn i {
        font-size: 15px;
        color: #075fd6;
        transition: color .18s ease;
    }

    #header .header-nav-top .nav > li > a.nav-link:hover i,
    #header .header-nav-top .nav > li > a.nav-link:focus i,
    #header .header-nav-top .nav > li .jct-header-logout-btn:hover i,
    #header .header-nav-top .nav > li .jct-header-logout-btn:focus i {
        color: #fff;
    }

    #header .header-nav-top .jct-header-logout-form {
        margin: 0;
        display: inline-flex;
    }

    #header .header-nav-top .jct-header-logout-btn {
        font-family: inherit;
        cursor: pointer;
    }

    #header .header-nav-top .nav > li.jct-auth-final > a.nav-link,
    #header .header-nav-top .nav > li.jct-auth-final .jct-header-logout-btn {
        color: #fff !important;
        background: linear-gradient(135deg, #075fd6, #0799ff);
        border-color: rgba(255,255,255,.28);
        box-shadow: 0 10px 22px rgba(7, 95, 214, .22);
    }

    #header .header-nav-top .nav > li.jct-auth-final > a.nav-link i,
    #header .header-nav-top .nav > li.jct-auth-final .jct-header-logout-btn i {
        color: #fff;
    }

    #header .header-nav-top .nav > li.jct-phone-link > a.nav-link {
        color: #075433 !important;
        background: linear-gradient(180deg, #f3fff8, #e8fff2);
        border-color: rgba(19, 153, 86, .20);
    }

    #header .header-nav-top .nav > li.jct-phone-link > a.nav-link i {
        color: #16a663;
    }

    #header .header-nav-top .nav > li.jct-phone-link > a.nav-link:hover,
    #header .header-nav-top .nav > li.jct-phone-link > a.nav-link:focus {
        color: #fff !important;
        background: linear-gradient(135deg, #109b5b, #087545);
    }

    #header .header-nav-top .nav > li.jct-phone-link > a.nav-link:hover i,
    #header .header-nav-top .nav > li.jct-phone-link > a.nav-link:focus i {
        color: #fff;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {
    #sbDesktopBrand {
        left: 178px;
        width: 310px;
        height: 52px;
    }

    #azureSidebar.hidden ~ #azureContentWrapper #header .header-nav-top .nav.nav-pills {
        padding-left: 495px;
    }

    #azureSidebar.hidden ~ #azureContentWrapper #header .header-nav-top .nav.nav-pills.jct-top-links,
    #azureSidebar:not(.hidden) ~ #azureContentWrapper #header .header-nav-top .nav.nav-pills.jct-top-links {
        padding-left: 0 !important;
    }

    #header .header-nav-top.jct-top-links-nav {
        overflow-x: auto;
    }

    #header .header-nav-top .jct-top-links > li > a.nav-link,
    #header .header-nav-top .jct-top-links > li .jct-header-logout-btn {
        width: auto;
        padding: 8px 12px !important;
        border-radius: 999px;
    }

    #header .header-nav-top .jct-top-links > li .jct-link-label {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
        overflow: visible;
        clip: auto;
        border: 0;
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    :root {
        --jct-sb-w: 276px;
    }

    #azureSidebar .sb-brand-copy strong {
        font-size: 13px;
    }
}
