/* Chevron icons for expand/collapse in Proxy and other components */
.bi-chevron-down-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    background-size: 0.6rem 0.6rem;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.bi-chevron-up-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-chevron-up' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 11.354a.5.5 0 0 0 .708 0L8 5.707l5.646 5.647a.5.5 0 0 0 .708-.708l-6-6a.5.5 0 0 0-.708 0l-6 6a.5.5 0 0 0 0 .708z'/%3E%3C/svg%3E");
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    background-size: 0.6rem 0.6rem;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* Proxy table row backgrounds */
.proxy-table tr {
    background: #fff;
}

.proxy-table tr.expanded-row {
    background: #e9ecef;
}

.proxy-table tr.sub-table-row {
    background: #f6f6f6;
}

.sub-table-bg tr {
    background: #f6f6f6 !important;
}

/* Trash icon for delete buttons in Proxy and other components */
.bi-trash3-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-trash3' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 1h3a.5.5 0 0 1 .5.5v1H6v-1a.5.5 0 0 1 .5-.5M11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3A1.5 1.5 0 0 0 5 1.5v1H1.5a.5.5 0 0 0 0 1h.538l.853 10.66A2 2 0 0 0 4.885 16h6.23a2 2 0 0 0 1.994-1.84l.853-10.66h.538a.5.5 0 0 0 0-1zm1.958 1-.846 10.58a1 1 0 0 1-.997.92h-6.23a1 1 0 0 1-.997-.92L3.042 3.5zm-7.487 1a.5.5 0 0 1 .528.47l.5 8.5a.5.5 0 0 1-.998.06L5 5.03a.5.5 0 0 1 .47-.53Zm5.058 0a.5.5 0 0 1 .47.53l-.5 8.5a.5.5 0 1 1-.998-.06l.5-8.5a.5.5 0 0 1 .528-.47M8 4.5a.5.5 0 0 1 .5.5v8.5a.5.5 0 0 1-1 0V5a.5.5 0 0 1 .5-.5'/%3E%3C/svg%3E");
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem 1.25rem;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 0;
}

/* Make last two columns (expand/collapse and trash) narrow in main and sub tables */
.proxy-table th:last-child,
.proxy-table th:nth-last-child(2),
.proxy-table td:last-child,
.proxy-table td:nth-last-child(2),
.sub-table-bg th:last-child,
.sub-table-bg th:nth-last-child(2),
.sub-table-bg td:last-child,
.sub-table-bg td:nth-last-child(2) {
    width: 2.2rem;
    min-width: 2.2rem;
    max-width: 2.2rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    text-align: center;
}