.inventory {
    position: relative;
}

.inventory tr.invisible {
    display: none;
}

table tbody > tr:nth-child(odd of :not(.invisible)) > td {
    background-color: rgba(128, 128, 128, 0.0705882353) !important;
}

table tbody > tr:nth-child(even of :not(.invisible)) > td {
    background-color: white !important;
}

.inventory .table-wrapper tr:hover > td {
    background-color: #E97741 !important;
    color: white;
}

.inventory .table-wrapper {
    width: 100%;
    overflow: hidden;
    border: 1px solid hsla(0, 0%, 50.2%, .5019607843);
    border-radius: 11px;
}

@media screen and (max-width: 1225px) {
    .inventory .table-wrapper {
        overflow-x: scroll !important;
    }
}

.inventory .table-wrapper table {
    border-style: hidden;
    margin-block-end: 0;
}

.inventory .table-wrapper table tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

.inventory .table-wrapper table tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

.inventory .table-wrapper table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.inventory .table-wrapper table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.inventory .table-wrapper td {
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

.inventory .table-wrapper td.compliant {
    text-align: center;
}

.inventory .table-wrapper td.deviceName img {
    max-height: 1.5em;
    margin-right: .5em;
    margin-bottom: -.4em;
}

.inventory .table-wrapper td.compliant img {
    max-width: 1.5em;
}

.inventory .options {
    margin-bottom: 2em;
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
}

.inventory .options .field {
    float: left;
    width: 100%;
    max-width: 200px;
    margin-right: 1em;
}

.inventory .options .field label {
    margin-bottom: 0.7em;
}

.inventory .options select,
.inventory .options button,
.inventory .options input,
.inventory .options textarea {
    border-radius: 10px;
}

.inventory .options .field select {
    color: var(--e-global-color-text);
    border: 1px solid var(--e-global-color-text);
}

.inventory .options button {
    float: left;
    padding: .45rem 1rem;
    margin-top: 1.7em;
    margin-right: 1em;
}