/* stylelint-disable selector-no-type */
.BlacklistTable {

    &-blacklist-table {
        color: $grey;
        padding: 10px;
    }

    &-table {
        border-collapse: collapse;
        text-align: center;
        width: 100%;
    }

    &-table th {
        background-color: $table-header-bg;
        border: $border-style;
        color: $table-header-color;
        padding: 10px;
    }

    &-table td {
        border: $border-style;
    }

    &-table-input-disable:disabled {
        -webkit-appearance: unset;
        background: unset;
        border: unset;
        box-shadow: unset;
        cursor: unset;
        opacity: unset;
        position: absolute;
        visibility: hidden;
    }

    &-table-data-wrapper {
        align-items: center;
        display: flex;
        position: relative;
    }

    &-table-data-placeholder {
        margin-left: 5%;
        text-align: left;
    }

    &-table-data-placeholder::before {
        content: "\200B";
    }

    &-table-select-option {
        max-width: 300px;
    }

    &-disable-wrapper {
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }

    &-pagination {
        text-align: right;
    }

    &-heading {
        padding-bottom: 10px;
    }

    &-noResult {
        padding: 100px;
    }

}
