.sidebar-panel {
    width: 300px;
    min-height: 100vh;
    position: fixed;
    inset: 0 auto 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 10px;
    background: linear-gradient(180deg,#060a12 0%,#03050a 100%);
    border-right: 1px solid #1d2940;
}

.brand-card {
    height: 82px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(15, 23, 42, .55);
    border: 1px solid rgba(148, 163, 184, .08);
}

.brand-logo-img {
    max-width: 245px;
    max-height: 64px;
    object-fit: contain;
}

.sidebar-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-item {
    margin-bottom: 8px;
}

.menu-item a {
    height: 46px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    border-radius: 7px;
    color: #9fb0cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.menu-item i {
    font-size: 20px;
    color: #8da2c4;
}

.menu-item.active a {
    color: #fff;
    background: linear-gradient(90deg,#7c3aed,#4c1d95);
    border: 1px solid rgba(216,180,254,.55);
    box-shadow: 0 0 22px rgba(124,58,237,.22);
}

.menu-item.active i {
    color: #fff;
}

.sidebar-footer-summary {
    padding: 16px;
    border-radius: 9px;
    background: linear-gradient(180deg,#0f172a,#060a12);
    border: 1px solid #1d2940;
}

.summary-title {
    margin-bottom: 14px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9px;
    color: #8190aa;
    font-size: 12px;
}

.summary-value {
    color: #f8fafc;
    font-weight: 900;
}

.sidebar-version {
    margin-top: 16px;
    text-align: center;
    color: #4b5d79;
    font-size: 10px;
}
.main-wrapper {
    margin-left: 300px;
}

@media (max-width: 1400px) {
    .sidebar-panel {
        width: 250px;
    }

    .main-wrapper {
        margin-left: 250px;
    }
}
.sidebar-section-label {
    margin: 18px 18px 8px;
    color: #536783;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sidebar-section-label-spaced {
    margin-top: 28px;
}
