body::-webkit-scrollbar {
    width: 0.7em;
}
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 10px;
}
pre::-webkit-scrollbar {
    width: 0.7em;
}
pre::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
pre::-webkit-scrollbar-thumb {
    background-color: #193446;
    border-radius: 10px;
}
div::-webkit-scrollbar {
    width: 0.7em;
}
div::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
div::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 10px;
}
td::-webkit-scrollbar {
    width: 0.7em;
    height: 0.7em;
}
td::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
td::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 10px;
}
.search-data {
    position: absolute;
    z-index: 3;
    overflow-y: auto;
    overflow-x: hidden;
    width: inherit;
    max-height: 350px;
}
.search-image {
    max-width: 40px;
    margin-right: 10px;
}
.search-book-d {
    max-height: 50px;
    overflow: hidden;
}
.book-image {
    height: 120px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}
.book-description {
    height: 80px;
    overflow: hidden;
    color: black;
}
.home-book-image {
    outline: none;
    display: inline-flex;
    height: 250px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}
.book-description {
    height: 80px;
    overflow: hidden;
    color: black;
}

.author-remove {
    cursor: pointer;
}
.author-remove:hover {
    cursor: pointer;
    color: red;
}

@-webkit-keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border 0.75s linear infinite;
    animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow 0.75s linear infinite;
    animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}
