.pdf-embed-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust height as needed */
    overflow: hidden;
    border: 1px solid #d5d5d5;
    border-radius: 10px;
}

.pdf-viewer {
    width: 100%;
    height: calc(100% - 40px); /* Adjust height to account for toolbar */
    border: none;
    overflow: auto;
    z-index: 700;
    position: relative;
}

.pdf-viewer canvas {
    width: 100%;
}

.pdf-toolbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    height: 30px;
    background: #d5d5d5;
    gap: 10px;
    z-index: 800;
}

.btn-wrapper {
    display: flex;
    gap: 20px;
}

.pdf-toolbar button {
    height: 100%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    z-index: 800;
}

.pdf-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #000;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 900;
    display: none;
}


#page-info {
    font-family: var(--loco-oxygen-400);
    font-size: 16px;
    margin-right: 5px;
}

@media only screen and (max-width: 767px) {
    #page-info {
        display: none;
    }
}
