/*
.feed-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.ad-column {
    width: 150px;
    position: sticky;
    top: 20px;
}

.feed-container {
    flex: 1;
    max-width: 600px;
    height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    scroll-snap-type: y mandatory;
}

.feed-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    scroll-snap-align: start;
}

.post-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 10px;
}

.post-content {
    text-align: center;
}

.full-media {
    width: 100%;
    border-radius: 10px;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 10px;
}

.post-actions-bar {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.post-actions-bar button {
    background: rgba(0,0,0,0.05);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.comment {
    font-size: 0.9rem;
    color: #333;
    margin-top: 5px;
}

.ad {
    background: #f1f1f1;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-size: 0.9rem;
}

.follow-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
}
*/