/* /home/siisi/vertex/media_app/static/css/story-list.css */


/* Make the story grid scrollable vertically */
.story-media-grid {
    max-height: 60vh;
    /* or any height you prefer, e.g. 500px */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
}

/* Custom scrollbar - same as profile grid */
.story-media-grid::-webkit-scrollbar {
    width: 6px;
}

.story-media-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.story-media-grid::-webkit-scrollbar-thumb {
    background: #43DC80;
    border-radius: 10px;
}

.story-media-grid::-webkit-scrollbar-thumb:hover {
    background: #3ac571;
}

/* Firefox */
.story-media-grid {
    scrollbar-width: thin;
    scrollbar-color: #43DC80 rgba(0, 0, 0, 0.05);
}

/* Dark mode - story list scrollbar */
[data-bs-theme="dark"] .story-media-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}
[data-bs-theme="dark"] .story-media-grid {
    scrollbar-color: #43DC80 rgba(255,255,255,0.05);
}
