#bp-story-container {
    padding: 10px;
    margin-bottom: 20px;
}

#story-upload-btn {
    padding: 8px 12px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#story-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.story-track {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    margin-top: 10px;
    padding-bottom: 10px;
}

.story-item {
    flex: 0 0 auto;
    width: 100px;
    text-align: center;
}

.story-item img,
.story-item video {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}
