@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    --sidebar-bg-1: rgba(6, 10, 24, 0.98);
    --sidebar-bg-2: rgba(10, 16, 36, 0.94);
    --sidebar-panel: rgba(11, 17, 39, 0.94);
    --sidebar-panel-soft: rgba(18, 27, 58, 0.82);
    --sidebar-border: rgba(83, 247, 255, 0.18);
    --sidebar-border-hot: rgba(255, 79, 216, 0.24);
    --sidebar-cyan: #53f7ff;
    --sidebar-cyan-deep: #11b4ff;
    --sidebar-magenta: #ff4fd8;
    --sidebar-violet: #9058ff;
    --sidebar-amber: #ffc857;
    --sidebar-text: #e8fbff;
    --sidebar-text-mid: #aac8e7;
    --sidebar-text-soft: #7896b7;
    --sidebar-shadow: 0 0 0 1px rgba(83, 247, 255, 0.08), 0 0 28px rgba(17, 180, 255, 0.12), 18px 0 44px rgba(2, 7, 20, 0.52);
    --sidebar-clip: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 99;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    pointer-events: none;
}

.drawer-overlay.open {
    background: rgba(2, 5, 16, 0.52);
    backdrop-filter: blur(4px);
    pointer-events: auto;
}

.drawer {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, var(--sidebar-bg-1), var(--sidebar-bg-2));
    border-right: 1px solid var(--sidebar-border);
    z-index: 101;
    box-shadow: var(--sidebar-shadow);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.drawer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(83, 247, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(83, 247, 255, 0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.18;
    pointer-events: none;
}

.drawer::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 79, 216, 0.16), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}

.drawer.open {
    transform: translateX(0);
}

.drawer-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 16px;
    border-bottom: 1px solid rgba(83, 247, 255, 0.12);
}

.wordmark {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sidebar-text);
    text-decoration: none;
}

.wordmark .accent {
    color: transparent;
    background: linear-gradient(135deg, var(--sidebar-magenta) 0%, #ff9dea 42%, var(--sidebar-cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.drawer-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sidebar-border);
    background: rgba(7, 12, 29, 0.86);
    color: var(--sidebar-cyan);
    clip-path: var(--sidebar-clip);
    cursor: pointer;
    font-size: 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 10px 18px rgba(2, 7, 20, 0.36);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.drawer-close:hover {
    transform: translateY(-1px);
    color: #fff;
    border-color: rgba(255, 79, 216, 0.3);
    background: rgba(10, 16, 38, 0.94);
    box-shadow: 0 0 18px rgba(83, 247, 255, 0.12), 0 0 18px rgba(255, 79, 216, 0.12), 0 12px 22px rgba(2, 7, 20, 0.44);
}

.drawer-close.drawer-header-logout {
    width: 36px;
    height: 36px;
    border-color: rgba(255, 79, 216, 0.22);
    background: linear-gradient(145deg, rgba(12, 18, 40, 0.96), rgba(7, 12, 29, 0.9));
    color: var(--sidebar-magenta);
    text-decoration: none;
}

.drawer-close.drawer-header-logout:hover {
    color: #fff;
    border-color: rgba(255, 79, 216, 0.36);
}

.drawer-close.drawer-header-logout i {
    font-size: 15px;
    line-height: 1;
}

.drawer-close.drawer-header-logout:active {
    transform: translateY(0);
}

.drawer-close.drawer-header-logout:focus-visible,
.drawer-close:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(83, 247, 255, 0.22),
        0 0 18px rgba(255, 79, 216, 0.14),
        0 12px 22px rgba(2, 7, 20, 0.44);
}

.drawer-scroll {
    position: relative;
    z-index: 1;
    flex: 1;
    overflow-y: auto;
    padding: 12px 0 18px;
}

.drawer-scroll::-webkit-scrollbar {
    width: 6px;
}

.drawer-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(83, 247, 255, 0.35), rgba(255, 79, 216, 0.35));
    border-radius: 999px;
}

.drawer-label {
    padding: 14px 16px 8px;
    color: var(--sidebar-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.82;
}

.drawer-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 5px 10px;
    padding: 13px 16px;
    color: var(--sidebar-text-mid);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1px solid transparent;
    background: rgba(8, 12, 28, 0.34);
    clip-path: var(--sidebar-clip);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.drawer-link i {
    font-size: 16px;
    flex-shrink: 0;
}

.drawer-link::after {
    content: '';
    position: absolute;
    left: 16px;
    bottom: 0;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, var(--sidebar-cyan), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.drawer-link:hover {
    transform: translateX(4px);
    color: var(--sidebar-text);
    border-color: rgba(83, 247, 255, 0.18);
    background: rgba(11, 18, 40, 0.82);
    box-shadow: 0 12px 22px rgba(2, 7, 20, 0.36);
}

.drawer-link:hover::after,
.drawer-link.active::after {
    opacity: 1;
}

.drawer-link.active {
    color: var(--sidebar-text);
    font-weight: 800;
    border-color: rgba(255, 79, 216, 0.26);
    background: linear-gradient(135deg, rgba(83, 247, 255, 0.16), rgba(255, 79, 216, 0.2));
    box-shadow: 0 0 0 1px rgba(255, 79, 216, 0.08), 0 0 22px rgba(83, 247, 255, 0.1), 0 14px 26px rgba(2, 8, 22, 0.42);
}

.drawer-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: linear-gradient(180deg, var(--sidebar-cyan), var(--sidebar-magenta));
    box-shadow: 0 0 14px rgba(83, 247, 255, 0.42);
}

.header-balance-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 11px;
    border: 1px solid rgba(83, 247, 255, 0.2);
    background: rgba(8, 13, 30, 0.82);
    color: var(--sidebar-text);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    clip-path: var(--sidebar-clip);
    box-shadow: 0 10px 18px rgba(2, 7, 20, 0.32);
}

.header-balance-chip i {
    color: var(--sidebar-cyan);
    font-size: 12px;
}

.header-balance-chip span {
    line-height: 1;
}

.header-notif-wrap {
    position: relative;
    display: inline-flex;
}

.admin-desktop-notif-anchor {
    position: fixed;
    top: 10px;
    right: 18px;
    z-index: 220;
    display: inline-flex;
    align-items: center;
}

.header-notif-btn {
    position: relative;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(83, 247, 255, 0.2);
    background: rgba(8, 13, 30, 0.82);
    color: var(--sidebar-cyan);
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(2, 7, 20, 0.32);
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.header-notif-btn i {
    font-size: 14px;
}

.header-notif-btn.active,
.header-notif-btn:hover {
    transform: translateY(-1px);
    color: #fff;
    border-color: rgba(255, 79, 216, 0.28);
    box-shadow: 0 0 18px rgba(83, 247, 255, 0.14), 0 0 20px rgba(255, 79, 216, 0.14), 0 12px 20px rgba(2, 7, 20, 0.4);
}

.header-notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sidebar-magenta), var(--sidebar-amber));
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(255, 79, 216, 0.28);
}

.header-notif-badge.hidden {
    display: none;
}

.header-notif-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(92vw, 360px);
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(83, 247, 255, 0.2);
    background: linear-gradient(160deg, rgba(7, 12, 29, 0.98), rgba(12, 20, 46, 0.94));
    box-shadow: 0 0 0 1px rgba(83, 247, 255, 0.08), 0 22px 40px rgba(2, 8, 22, 0.58);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    z-index: 160;
    display: none;
    isolation: isolate;
    opacity: 1;
}

.header-notif-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sidebar-cyan), transparent);
    opacity: 0.85;
}

.header-notif-panel.open {
    display: block;
}

body.client-notif-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 150;
    pointer-events: none;
    background: rgba(4, 8, 20, 0.08);
}

body.client-notif-open main,
body.client-notif-open .drawer {
    filter: blur(5px) saturate(90%) brightness(0.82);
    transition: filter 0.18s ease;
}

@media (max-width: 767px) {
    .header-notif-panel {
        position: fixed;
        left: 50%;
        top: calc(env(safe-area-inset-top, 0px) + 94px);
        right: auto;
        transform: translateX(-50%);
        width: min(94vw, 380px);
        max-height: calc(100vh - env(safe-area-inset-top, 0px) - 112px);
        overflow: hidden;
        z-index: 260;
        box-shadow:
            0 24px 40px rgba(2, 8, 22, 0.62),
            0 0 0 100vmax rgba(3, 8, 20, 0.34);
    }

    .header-notif-list {
        max-height: calc(100vh - env(safe-area-inset-top, 0px) - 194px);
    }
}

@media (max-width: 1023px) {
    .admin-desktop-notif-anchor {
        display: none !important;
    }
}

.header-notif-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
    padding: 0 2px;
}

.header-notif-head strong {
    color: var(--sidebar-text);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.header-notif-clear {
    border: 1px solid rgba(83, 247, 255, 0.2);
    background: rgba(8, 13, 30, 0.84);
    color: var(--sidebar-text-mid);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 8px;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.header-notif-clear:hover {
    color: #fff;
    border-color: rgba(255, 79, 216, 0.28);
    background: rgba(11, 18, 40, 0.92);
}

.header-notif-list {
    max-height: 330px;
    overflow: auto;
    display: grid;
    gap: 8px;
    padding-right: 1px;
}

.header-notif-empty {
    padding: 14px 10px;
    border-radius: 14px;
    border: 1px dashed rgba(83, 247, 255, 0.24);
    background: rgba(8, 12, 28, 0.7);
    color: var(--sidebar-text-soft);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.header-notif-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 14px;
    border: 1px solid rgba(83, 247, 255, 0.14);
    background: linear-gradient(160deg, rgba(10, 16, 37, 0.96), rgba(16, 24, 53, 0.78));
}

.header-notif-item.unread {
    border-color: rgba(255, 79, 216, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 79, 216, 0.06), 0 0 22px rgba(83, 247, 255, 0.08);
}

.header-notif-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 13px;
}

.header-notif-item.info .header-notif-icon {
    background: rgba(25, 62, 108, 0.68);
    color: var(--sidebar-cyan);
}

.header-notif-item.success .header-notif-icon {
    background: rgba(22, 88, 64, 0.68);
    color: #7dff9f;
}

.header-notif-item.warning .header-notif-icon {
    background: rgba(116, 74, 15, 0.7);
    color: var(--sidebar-amber);
}

.header-notif-item.danger .header-notif-icon {
    background: rgba(116, 25, 61, 0.7);
    color: #ff88c4;
}

.header-notif-body {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.header-notif-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 6px;
}

.header-notif-row strong {
    color: var(--sidebar-text);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
}

.header-notif-row time {
    color: var(--sidebar-text-soft);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.header-notif-body p {
    color: var(--sidebar-text-mid);
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

:where(
    .glass-title,
    .section-title,
    .wallet-title,
    .category-section-title,
    .stocks-section-title,
    .profits-chart-card h3,
    .profits-table-card h3
) > i:first-child {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #050816;
    font-size: 13px;
    line-height: 1;
    background: linear-gradient(135deg, var(--sidebar-cyan) 0%, var(--sidebar-magenta) 100%);
    box-shadow: 0 0 18px rgba(83, 247, 255, 0.22);
}

:where(
    .glass-title,
    .section-title,
    .wallet-title,
    .category-section-title,
    .stocks-section-title,
    .profits-chart-card h3,
    .profits-table-card h3
) > i:first-child.fa-solid,
:where(
    .glass-title,
    .section-title,
    .wallet-title,
    .category-section-title,
    .stocks-section-title,
    .profits-chart-card h3,
    .profits-table-card h3
) > i:first-child.fa-regular,
:where(
    .glass-title,
    .section-title,
    .wallet-title,
    .category-section-title,
    .stocks-section-title,
    .profits-chart-card h3,
    .profits-table-card h3
) > i:first-child.fa-brands {
    font-size: 12px;
}

:where(.profits-kpi-label) > i:first-child {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #050816;
    font-size: 10px;
    line-height: 1;
    background: linear-gradient(135deg, var(--sidebar-cyan) 0%, var(--sidebar-magenta) 100%);
    box-shadow: 0 0 14px rgba(83, 247, 255, 0.18);
}

@media (max-width: 1023px) {
    #sidebarMount {
        position: relative;
        z-index: 1;
    }

    body.drawer-lock #sidebarMount,
    body.sidebar-open #sidebarMount {
        z-index: 520;
    }

    body.sidebar-open {
        overflow: hidden;
    }

    body.drawer-lock {
        overflow: hidden;
    }

    .drawer-overlay {
        z-index: 500;
    }

    .drawer {
        z-index: 510;
        width: min(280px, calc(100vw - 20px));
        height: 100dvh;
        max-height: 100dvh;
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .drawer-scroll .drawer-label,
    .drawer-scroll .drawer-link {
        opacity: 0;
        transform: translateX(-14px);
    }

    .drawer.open .drawer-scroll .drawer-label,
    .drawer.open .drawer-scroll .drawer-link {
        animation: drawerItemIn 0.62s ease-out forwards;
        animation-delay: var(--drawer-item-delay, 0s);
    }
}

@media (min-width: 1024px) {
    body {
        flex-direction: row;
        width: 100%;
        overflow-x: hidden;
    }

    header.site-header {
        display: none;
    }

    .drawer {
        position: fixed;
        left: 0;
        top: 0;
        width: 260px;
        min-width: 260px;
        height: 100vh;
        transform: none;
        flex-shrink: 0;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 100;
    }

    .drawer-overlay {
        display: none;
    }

    main {
        flex: 1;
        display: flex;
        flex-direction: column;
        width: calc(100% - 260px);
        max-width: calc(100% - 260px);
        min-width: 0;
        margin-left: 260px;
        overflow-x: hidden;
    }
}

@media (min-width: 1024px) {
    body.desktop-client-header header.site-header,
    body.desktop-admin-header header.site-header {
        display: block;
        position: fixed;
        top: 0;
        left: 260px;
        right: 0;
        width: auto;
        margin-left: 0;
        padding: 10px 16px 0;
        background: transparent;
        z-index: 140;
    }

    body.desktop-client-header .menu-btn,
    body.desktop-admin-header .menu-btn {
        display: none;
    }

    body.desktop-client-header main,
    body.desktop-admin-header main {
        padding-top: 72px;
    }
}

@keyframes drawerItemIn {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

:root {
    --sidebar-bg-1: rgba(7, 12, 18, 0.99);
    --sidebar-bg-2: rgba(4, 8, 13, 0.99);
    --sidebar-panel: rgba(8, 14, 22, 0.96);
    --sidebar-panel-soft: rgba(10, 17, 26, 0.94);
    --sidebar-border: rgba(0, 242, 255, 0.22);
    --sidebar-border-hot: rgba(0, 242, 255, 0.42);
    --sidebar-cyan: #00f2ff;
    --sidebar-cyan-deep: #18a7ff;
    --sidebar-magenta: #00c8ff;
    --sidebar-violet: #0f6cff;
    --sidebar-amber: #ffb347;
    --sidebar-text: #f7fdff;
    --sidebar-text-mid: #d2f4ff;
    --sidebar-text-soft: #7ea1b2;
    --sidebar-shadow: 0 0 0 1px rgba(0, 242, 255, 0.08), 0 0 22px rgba(0, 242, 255, 0.08), 20px 0 40px rgba(0, 0, 0, 0.58);
}

.drawer {
    width: 280px;
    background: linear-gradient(180deg, rgba(9, 15, 23, 0.99), rgba(4, 8, 13, 0.99));
    border-right: 2px solid var(--sidebar-cyan);
}

.drawer::before {
    background:
        linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.22;
}

.drawer::after {
    top: auto;
    right: -64px;
    bottom: -68px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.12), transparent 68%);
}

.drawer-header {
    padding: 20px 18px;
    background: linear-gradient(180deg, rgba(11, 18, 29, 0.96), rgba(8, 13, 21, 0.84));
    border-bottom: 1px solid rgba(0, 242, 255, 0.16);
}

.wordmark {
    letter-spacing: 0.18em;
    text-shadow: 0 0 12px rgba(0, 242, 255, 0.16);
}

.wordmark .accent {
    color: var(--sidebar-cyan);
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    text-shadow: 0 0 14px rgba(0, 242, 255, 0.4);
}

.drawer-close,
.drawer-close.drawer-header-logout,
.header-notif-btn,
.header-balance-chip {
    clip-path: none;
    border-radius: 6px;
}

.drawer-label {
    padding: 18px 18px 10px;
    color: var(--sidebar-cyan);
    opacity: 1;
}

.drawer-scroll {
    padding: 8px 0 18px;
}

.drawer-link {
    margin: 0;
    padding: 15px 18px;
    border: 0;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(0, 242, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    clip-path: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.drawer-link::after {
    left: 0;
    bottom: -1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.8), transparent);
}

.drawer-link:hover {
    transform: none;
    padding-left: 24px;
    color: var(--sidebar-cyan);
    background: rgba(0, 242, 255, 0.08);
    border-left-color: rgba(0, 242, 255, 0.4);
    box-shadow: inset 0 0 0 1px rgba(0, 242, 255, 0.06);
}

.drawer-link.active {
    color: var(--sidebar-cyan);
    border-left-color: var(--sidebar-cyan);
    background: rgba(0, 242, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(0, 242, 255, 0.1), 0 0 16px rgba(0, 242, 255, 0.08);
}

.drawer-link.active::before {
    display: none;
}

.header-balance-chip,
.header-notif-btn,
.header-notif-panel,
.header-notif-item,
.header-notif-empty {
    background: linear-gradient(180deg, rgba(8, 14, 22, 0.96), rgba(5, 10, 15, 0.98));
    border-color: rgba(0, 242, 255, 0.18);
}

.header-notif-btn.active,
.header-notif-btn:hover {
    border-color: rgba(0, 242, 255, 0.42);
    box-shadow: 0 0 16px rgba(0, 242, 255, 0.16), 0 12px 20px rgba(0, 0, 0, 0.4);
}

.header-notif-badge {
    background: var(--sidebar-cyan);
    color: #031018;
    box-shadow: 0 0 16px rgba(0, 242, 255, 0.24);
}

.header-notif-clear:hover {
    border-color: rgba(0, 242, 255, 0.36);
}

:where(
    .glass-title,
    .section-title,
    .wallet-title,
    .category-section-title,
    .stocks-section-title,
    .profits-chart-card h3,
    .profits-table-card h3
) > i:first-child,
:where(.profits-kpi-label) > i:first-child {
    color: #031018;
    background: linear-gradient(135deg, var(--sidebar-cyan) 0%, var(--sidebar-cyan-deep) 100%);
    box-shadow: 0 0 16px rgba(0, 242, 255, 0.2);
}

@media (min-width: 1024px) {
    .drawer {
        width: 280px;
        min-width: 280px;
    }

    main {
        width: calc(100% - 280px);
        max-width: calc(100% - 280px);
        margin-left: 280px;
    }
}

@media (min-width: 1024px) {
    body.desktop-client-header header.site-header,
    body.desktop-admin-header header.site-header {
        left: 280px;
    }
}
