.pdf-toolbar{
    min-height: 30px;
    padding: 5px 3px;
    background-color: #1c3b6f;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-toolbar-btn:hover {
    /* background-color: #ffffff; */
    /* color: black; */
    cursor: pointer;
}
.pdf-viewer-body{
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.pdf-toolbar-btn {
    color: black;
    display: inline-block;
    padding: 3px;
    border-radius: 50%;
    text-align: center;
    margin: 5px;
}

.pdf-toolbar-title{
    color: white;
    font-weight: bold;
    margin-left: 10px;
    margin-right: 10px;
}

input[type="number"]#current-page {
    width: 30px;
    text-align: center;
    height: 30px;
    margin: 5px 10px;
    border-radius: 5px;
}

input[type="number"]#current-page:hover,
input[type="number"]#current-page:active,
input[type="number"]#current-page:focus-within{
    border-color: #c3ad14;
}

span#page-number, span#page-number-sep{
    color: white;
}

/*Hide number arrows*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

select.pdf-toolbar-zoom{
    height: 28px;
    margin-left: 15px;
    width: 80px;
    text-align: center;
    border-radius: 5px;
    border-width: 2px;
    border-color: #8593a2;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Remove default arrow */

    /* Add custom arrow */
}

select.pdf-toolbar-zoom:before {
    content: "▼";
    padding: 12px 8px;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 1;
    text-align: center;
    width: 10%;
    height: 100%;
    pointer-events: none;
}

div#pdfviewer {
    height: 600px;
    width: 900px;
}

div#page-container {
    /* background-color: #cecece; */
    position: relative;
    height: 100%;
}

canvas.pdf-page {
    margin: 20px auto;
    display: block;
    box-shadow: 0px 0px 10px #1c3b6f;
}

div#page-container {
    overflow-y: scroll;
}