/* ===================================
   Layout Structure
   Site container, content wrapper
   =================================== */

.site {
    display: flex;
    min-height: 100vh;
}

.site-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
    padding-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1020px) {
    .sidebar-active {
        overflow: hidden;
    }

    .sidebar-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .site-content {
        padding-top: 40px;
    }
}
