.paginated-table-panel {
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: 0.1em;

    display: grid;
    grid-row-gap: 0.2em;
    grid-template-columns: auto;
    grid-template-rows: 1fr auto;
    grid-template-areas:
        "list-table"
        "list-pagination";
}

.scrollable {
    overflow-y: auto !important;
    overflow-x: auto !important;
}

.paginated-table-panel.scrollable {
    padding-right: 1em;
}

.list-header {
    grid-area: list-header;
    width: 100%;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
}

.list-table {
    grid-area: list-table;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: auto;
}

.list-pagination {
    grid-area: list-pagination;
    padding-bottom:0;
}

.filterInput {
    padding-top: 5px;
    margin-bottom: 5px;
}

.list-table td, th {
    white-space: nowrap;
}

.list-table td:last-child {
}

.list-table td.text-column,
.list-table th.text-column {
    padding-right: 0.5rem;
}

.dropdown-toggle::after {
    display: none;
}

.action-item {
    text-align: center;
    min-width: 18px;
}

.fa-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipsis100 {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipsis150 {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipsis70 {
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fill-column {
    width: 100%;
    max-width: 100vw;
}

.fill-column-50 {
    width: 50%;
    max-width: 50vw;
}

.fill-column-33 {
    width: 33%;
    max-width: 33vw;
}

.fill-column-25 {
    width: 25%;
    max-width: 25vw;
}

.info-window-ellipsis {
    height: 18px;
    width: 140px;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: inline-block;
    margin: 0 5px -7px 5px;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .list-pagination {
        padding-bottom: 0;
    }
}
