/* Styles for Book View Component (non-slideshow parts) */

.book-details h1 {
    margin-top: 0px;
    color: #333;
}

.book-details ul li {
    margin-bottom: 10px;
}

.book-details img {
    width: 200px;
    height: 200px;
    border-radius: 5px;
    margin-bottom: 20px;
    object-fit: contain;
}

.book-details .col-md-8 {
    display: flex;
    align-items: center;
    overflow-x: visible; /* DEZE REGEL FIXT DE SCROLLBAR */
}

.book-details .col-md-4 {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: right;
    gap: 1.5rem;
}

.bookmark-pos {
    bottom: 0;
    line-height: 1;
}

.bookmark-toggle {
    font-size: 2rem;
    color: #007bff;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}