@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600;700&family=Sofia&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
    overflow-y: scroll; /* Show scrollbars */
}

.bg1 {
    background-color: beige;
}

.bg2 {
    background-color: violet;
}

.bg3 {
    background-color: cadetblue;
}

.checked {
    color: orange;
}


::-webkit-scrollbar {
    height: 6px;              /* height of horizontal scrollbar ← You're missing this */
    width: 6px;               /* width of vertical scrollbar */
    border: 6px solid #ffa100;
}

/* Header */
.header {
    /*background-color: #888888;*/

}

.header h1 {
    padding-top: 12px;
    font-family: "Sofia", sans-serif;
    font-weight: bold;
    font-size: 42px;
}

.header i {
    font-size: 3em;
    color: #388E3C;
}

/* Search */
.search {
    padding-top: 0px;
    padding-bottom: 0px;
}

.search input {
    margin-left: 10px;
    margin-right: 10px;
    width: 100%;
    height: 48px;
}

.resultItems {
    text-align: end;
    font-family: Roboto;
    font-weight: bold;
}

/* Pagination */
.pagination {
    padding-top: 12px;
}

.paginationItem {
    padding-left: 6px;
    padding-right: 6px;
    cursor: pointer;
}

/* Book item*/
.book {
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: #ececec;
    margin: 6px;
}

.bookTitle{
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 1em; /* fallback */
    max-height: 3em; /* fallback */
    height: 3em;
    overflow: hidden;
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;

    font-family: Roboto;
    font-weight: bold;
}
