#pdf-container {
    position: relative;
    display: block;
    text-align: center;
    width: 80%;
    margin: auto;
}

#pdf-canvas {
    box-shadow: 0px 2px 4px 0px rgba(148, 148, 148, 0.5);
    border: 1px solid black;
    margin-top: 20px;
    width: 100%;
}

#nav-buttons {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

#prev-page,
#next-page {
    position: absolute;
    background-color: aqua;
    top: 43%;
    width: 50px;
    /* Adjust size as needed */
    height: 150px;
    /* Adjust size as needed */
}

#prev-page {
    left: 30px;
    /* Adjust position as needed */
}

#next-page {
    right: 25px;
    /* Adjust position as needed */
}

#prev-page img,
#next-page img {
    width: 100%;
    height: 100%;
    margin: 5px;
}

#page-info {
    position: relative;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 40px;
    text-align: center;
}