#wrapper {
    position: fixed;
    top: 0;
    left: 0;

    width: 100vw;
    height: 100dvh;

    display: flex;
    justify-content: center;
    align-items: center;
}

#OZViewer {
    width: 100%;
    height: 100%;
}

#ctrl-cont {
    position: fixed;
    top: 50px;
    right: 20px;

    width: 200px;
    height: 150px;

    padding: 10px;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;

    border: none;
    background-color: rgb(250, 213, 165, 0.8);
    box-shadow: 3px 3px 10px gray;
}

#ctrl-cont button {
    border: 2px solid black;
    font-weight: bold;

    &:active:not(:disabled) {
        transform: scale(.9);
    }
}

#ctrl-cont a {
    font-size: .7em;
    margin-bottom: 1em;
}

#input-pdf {
    height: 4em;
}

#button-run {
    height: 3em;
}