.inventory-table {
    width: 100%;
    max-height: 100%;
    overflow: auto;
    background-color: var(--inventory-table-bg);
    color: var(--inventory-table-text);
    backdrop-filter: var(--inventory-table-backdrop-filter);
}

.page__right {
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: flex-start;
}
.page__middle {
    overflow: hidden;
    height: 100%;
}
.inventory-table td,
.inventory-table th {
    padding: 0.5em 1em;
    text-align: center;
    border-bottom: solid 1px var(--inventory-table-row-divider);
}
.inventory-table td {
    font-weight: var(--font-base-weight);
}
.inventory-table th {
    font-weight: var(--font-accent-weight);
}
.inventory-table thead {
    background-color: var(--inventory-table-header-bg);
    position: sticky;
    top: 0;
    border: none;
    clip-path: inset(2px round 7px);
    color: var(--inventory-table-header-text) !important;
}

.disclaimer {
    color: var(--inventory-disclaimer-text);
    font-size: 0.9em;
}
body[data-page-template="page-inventory"] .status-filter {
    background-color: var(--inventory-status-filter-bg);
    color: var(--inventory-status-filter-text);
}
