.o-app-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

/* Sidebar flex sizing to prevent squishing */
.c-sidebar-left {
    flex: 0 0 var(--sidebar-left-width);
}
.c-sidebar-right {
    flex: 0 0 var(--sidebar-right-width);
}

.o-main-content {
    flex: 1;
    min-width: 0;
    max-width: var(--main-max-width);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .o-app-layout {
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .o-main-content {
        border-left: none;
        border-right: none;
        max-width: 100%;
    }
}

.o-feed-container {
    max-width: var(--main-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

