/* ========================================
   LAYOUT CONTAINER
   ======================================== */

/* App Container */
.tiktok-app {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
}

/* Main content column */
.main-content {
    flex: 1;
    min-width: 0;
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-right: 80px; /* Create space for video-nav */
    overflow-x: hidden; /* Hide horizontal scroll */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    overscroll-behavior-x: none;
}

.main-content::-webkit-scrollbar {
    display: none;
}

/* search-active main-content rule moved to search.css */
