.picked-story {
    margin-top: 40px;
    background-color: #465c3a;
    color: white;
    padding: 20px;
}

.story-details {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.share-profile {
    display: flex;
    justify-content: flex-end;
}

.share-profile a {
    font-size: 12px;
    text-decoration: none;
    color: black;
    padding: 10px;
    border-radius: 50%;
    background-color: #f1f1f1;
}

.share-profile a:hover {
    background-color: #ccc;
}

.story-image {
    margin: 10px;
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.parts {
    margin-top: 20px;
    font-size: 15px;
}

.book-summary p,
p.parts {
    padding-right: 15px;
}

.story-button {
    border-radius: 15px;
    color: black;
    pointer-events: none;
    padding: 10px 20px;
    background-color: #fff;
    margin-top: 15px;
}

.user-name {
    font-size: 18px;
    margin-top: 20px;
}

.table-ofContent {
    margin-top: 50px;
}

.story-chapters {
    margin: 10px;
    padding-bottom: 10px;
}

.tags {
    background-color: #a7ae7f;
    color: black;
    text-align: start;
    border-radius: 30px;
    font-size: 12px;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 10px;
}

.copyright {
    margin-top: 40px;
    font-size: 13px;
    color: black;
    font-style: italic;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .story-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .picked-story .row {
        flex-direction: column;
    }

    .col-4,
    .col-8 {
        width: 100%;
        padding: 0;
    }

    .share-profile {
        justify-content: flex-start;
    }

    .story-button {
        width: 100%;
        text-align: center;
    }

    .book-summary p {
        font-size: 14px;
    }
    .parts {
        padding-inline-start: 15px;
    }
    .parts span {
        display: inline-block;
        margin-right: 10px;
    }
}
