.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);
}

.inventory-table-icon-link {
    display: inline-flex;
    position: relative;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    color: inherit;
}
.inventory-table-icon-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mask-size: 90%;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: currentColor;
}
.inventory-table-icon-link.icon-view::before {
    mask-image: var(--iconEye);
}
.inventory-table-icon-link.icon-pdf::before {
    mask-image: var(--iconPdf);
}
.inventory-table-icon-link.icon-enquire::before {
    mask-image: var(--iconEmail);
}
