.veag-ops-shell {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background: #f4f7fb;
    align-items: stretch;
    overflow-x: hidden;
}

/* =========================
   SIDEBAR (SINGLE MODEL)
========================= */
.veag-ops-sidebar {
    flex: 0 0 232px;
    width: 232px;
    min-width: 232px;

    box-sizing: border-box;   /* IMPORTANT */

    padding: 20px 14px;

    height: auto;
    position: relative;
    background: linear-gradient(180deg, #0b233a 0%, #071827 100%);
    color: #dce6f4;
    border-right: none;
    box-shadow: none;
    overflow: hidden;
    z-index: 10;
}

/* =========================
   BRAND
========================= */
.veag-ops-sidebar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.veag-ops-sidebar__logo {
    width: 100px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.veag-ops-sidebar__title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.veag-ops-sidebar__subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
}

/* =========================
   NAV
========================= */
.veag-ops-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.veag-ops-sidebar__section-label {
    padding: 10px 10px 4px;
    color: #93a7c4;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.veag-ops-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* =========================
   LINKS
========================= */
.veag-ops-sidebar__link,
.veag-ops-sidebar__group-toggle,
.veag-ops-sidebar__sublink {
    font-family: inherit;
    text-decoration: none;
    box-sizing: border-box;
    width: 100%;

    display: flex;
    align-items: center;
    gap: 10px;

    border-radius: 14px;
    padding: 12px;

    background: transparent;
    color: #d6e0ee;

    font-size: 0.97rem;
    font-weight: 600;

    transition: all 0.18s ease;
}

/* hover */
.veag-ops-sidebar__link:hover,
.veag-ops-sidebar__group-toggle:hover {
    background: rgba(24, 201, 194, 0.08);
    color: #fff;
    transform: translateX(2px);
}

/* active */
.veag-ops-sidebar__link.is-active,
.veag-ops-sidebar__group.is-active-group > .veag-ops-sidebar__group-toggle {
    background: rgba(24, 201, 194, 0.10);
    color: #fff;
    box-shadow: none;
}

/* =========================
   SUB NAV
========================= */
.veag-ops-sidebar__subnav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 24px;
}

/* =========================
   MAIN AREA (FIXED MODEL)
========================= */
.veag-ops-main {
    flex: 1;
    min-width: 0;
    width: auto;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.veag-ops-main__inner {
    width: 100%;
    max-width: none;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 1024px) {

    .veag-ops-shell {
        flex-direction: column;
    }

    .veag-ops-sidebar {
        width: 100%;
        min-width: 100%;
        flex: 0 0 auto;
        position: relative;
    }

    .veag-ops-main {
        width: 100%;
    }
}

/* =========================
   SAFETY RESET (IMPORTANT)
========================= */
body.veag-ops-template {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.veag-ops-shell {
    gap: 0 !important;
}

.veag-ops-shell,
body.veag-ops-template .veag-ops-shell {
    display: flex !important;
    gap: 0 !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
    border-spacing: 0 !important;
}

.veag-ops-sidebar {
    margin: 0 !important;
    padding: 20px 14px !important;
    border-right: none !important;
    box-shadow: none !important;
    flex: 0 0 232px !important;
    width: 232px !important;
    min-width: 232px !important;
}

.veag-ops-main {
    margin: 0 !important;
    padding: 0 !important;
    border-left: none !important;
    box-shadow: none !important;
}