/* ── 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.8125rem;
}

.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;
    }
}

/* ── Post Detay Linki ── */
.ofs-post-detail-link {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.15s ease;
    text-decoration: none;
}

.ofs-post-detail-link:hover {
    opacity: 1;
}


.ofs-poll-wrap {
    border: 1px solid var(--d-color);
    border-radius: 12px;
    padding: 10px 12px;
    background: var(--base-white);
    width: 100%;
}

.ofs-poll-row {
    position: relative;
    border-radius: 999px;
    overflow: hidden;
    background: var(--d-color);
    height: 40px;
    display: flex;
    align-items: center;
    width: 100%;
}

.ofs-poll-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--secondary-menu-passive-gray);
    border-radius: 999px;
    transition: width 0.4s ease;
}

.ofs-poll-fill--winner {
    background: #34C759;
}

.ofs-poll-pct {
    position: relative;
    z-index: 1;
    min-width: 62px;
    padding-left: 14px;
    font: normal normal 700 13px/1 Barlow, sans-serif;
    color: var(--true-black);
    white-space: nowrap;
}

.ofs-poll-text {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    font: normal normal 600 13px/1 Barlow, sans-serif;
    color: var(--true-black);
    padding-left: 4px;
    padding-right: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ofs-poll-text--winner {
    font-weight: 700;
}

.ofs-poll-meta {
    font: normal normal 600 12px/14px Barlow, sans-serif;
    color: #dc3545;
}
