/* Dashboard layout overrides — isolate from landing page */
body.is-dashboard .navbar,
body.is-dashboard .hero,
body.is-dashboard .container {
    all: unset;
}

.dash-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 64px;
    width: 100%;
}

.dash-content {
    flex: 1;
    min-width: 0;
    margin-left: 260px;
    padding: 24px 28px;
    background: var(--bg-primary);
    max-width: 100%;
}

.section {
    display: none !important;
}

.section.active {
    display: block !important;
}

@media (max-width: 768px) {
    .dash-content {
        margin-left: 0;
        padding: 16px 12px;
    }
}
