.status-quantity {
    border: solid 1px #b1b1b1;
    padding: 5px;
    font-size: 2em;
    margin: 5px;
    width: 100px;
}

.status-button {
    border: solid 1px #007aff;
    padding: 9px 10px;
    font-size: 1.5em;
    color: #007aff;
    background-color: #fff;
}

.table-view.compact > ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}
.table-view.compact > ul > li {
    border-bottom: none;
}

.table-view > ul > li textarea {
    width: 100%;
    height: 60px;
    border: solid 1px #d1d1d1;
    font-family: inherit;
    font-size: 15px;
    padding: 5px;
}

#quantity-modal {
    position: fixed;
}

.status-button.cancel {
    border-color: red;
    color: red;
}

.fullscreen {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    font-size: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.fullscreen.solid {
    background-color: rgba(255, 255, 255, 1);
}
@media screen and (orientation: landscape) {
    .fullscreen {
        padding-right: 38rem;
    }
}

.fullscreen p {
    margin: 0;
    text-align: center;
}

#scroll-top {
    display: none;
}
@media screen and (orientation: portrait) {
    #scroll-top {
        display: block;
        position: fixed;
        bottom: 50px;
        width: 100px;
        height: 100px;
        left: 50%;
        margin-left: -50px;
        z-index: 10;
    }
    #scroll-top i {
        font-size: 10rem;
        opacity: 0.25;
    }
}

.user-option {
    display: block;
    margin: 0.1em;
    padding: 1em 2em;
    border: solid 1px #d1d1d1;
    border-radius: 0.25em;
}

.user-option-radio:checked + label {
    background-color: #bdf3ff;
}
