/*
======================================================
Free Audiobooks

Only styling unique to this page.

General site appearance comes from main.css

======================================================
*/

.book {

    display: flex;

    gap: 2rem;

    margin: 2.5rem 0;

    align-items: flex-start;

}


.cover {

    width: 130px;

    height: auto;

    flex-shrink: 0;

}


.book-details {

    flex: 1;

}


.book-details h2 {

    margin-top: 0;

}


.chapters {

    margin-top: 1rem;

    margin-left: 1rem;

}


.chapters div {

    padding: 0.15rem 0;

}

#playerBar {
    position: sticky;
    bottom: 0;
    background: var(--bg-header);
    color: var(--text-header);
    padding: 0.75rem;
    z-index: 1000;
    border-top: 2px solid rgba(255,255,255,0.2);
}
.continue-panel {
    display: flex;
}

.continue-panel > * {
    margin-right: 12px;
}

.continue-panel > *:last-child {
    margin-right: 0;
}

details {
    margin-top: 12px;
}

summary {
    padding: 8px 0;
    cursor: pointer;
}
.continue-panel {
    align-items: flex-start;
}