/* ── Flow Sayfa Wrapper ── */
.flow-page-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 8px 0;
}

/* ── Orta Kolon ── */
.flow-center-col {
    display: flex;
    flex-direction: column;
}

#flow-middle-widget {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    align-self: flex-start;
    scrollbar-width: none;
    scrollbar-color: #d0d0d0 transparent;
    z-index: 1;
}

#flow-middle-widget::-webkit-scrollbar {
    width: 3px;
}

#flow-middle-widget::-webkit-scrollbar-track {
    background: transparent;
}

#flow-middle-widget::-webkit-scrollbar-thumb {
    background-color: #d0d0d0;
    border-radius: 99px;
}

#flow-middle-widget::-webkit-scrollbar-thumb:hover {
    background-color: #aaa;
}

.flow-container-wrapper {
    min-height: 200px;
}

#flow-page-container {
    scrollbar-width: thin;
}



/* ── Sağ Kolon: Reklamlar ── */
.flow-ads-col {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 0;
}

.flow-ads-col img {
    border-radius: 10px;
    display: block;
    width: 100%;
    object-fit: cover;
}

/* ── Kullanıcı Kategori Dropdown ── */
.flow-user-cat-all-label {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
}

.flow-user-cat-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    z-index: 200;
    overflow: hidden;
}

.flow-user-cat-item,
.live-user-cat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font: normal normal normal 12px/14px Barlow, sans-serif;
    color: #242129;
}

.flow-user-cat-item:hover,
.live-user-cat-item:hover {
    background: #f5f5f5;
}

.flow-user-cat-item.active,
.live-user-cat-item.active {
    font-weight: bold;
    background: #f0f0f0;
}

/* ── Flow Post Card ── */
#ofs-flow-page-posts > div {
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ── Kullanıcı Öneri Dropdown ── */
#flow-user-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    z-index: 9999;
    max-height: 240px;
    overflow-y: auto;
}

/* ── Search Input ── */
#flow-search-input:focus {
    border-color: #D94646;
    box-shadow: none;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .flow-page-wrapper {
        padding: 4px 0;
    }
}
