table {
    background-color: #FFFFFF;
    font-size: 12px;
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0px 3px 15px 0px rgba(34, 60, 80, 0.1);
    -moz-box-shadow: 0px 3px 15px 0px rgba(34, 60, 80, 0.1);
    box-shadow: 0px 3px 15px 0px rgba(34, 60, 80, 0.1);
    border-collapse: collapse;
    margin-bottom: 50px;
}
tr {
    text-align: left;
    z-index: 2 !important;
    overflow: hidden;
}
td, th {
    padding: 8px;
    z-index: 2 !important;
    border-top: 1px solid #CCCCCC;
    width: 200px;
    overflow: hidden;
}
th {
    position: sticky;
    top: 70px;
    background: #fff;
    overflow-y: auto;
    color: #78818E;
    border: none;
}
table img {
    width: 64px;
}
.th-with-icon {
    display: grid;
    justify-content: space-between;
    grid-template-columns: minmax(min-content, 1fr) max-content;
}
.th-icon {
    width: 32px !important;
    height: 32px !important;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 4px;
    cursor: pointer;
    justify-self: end;
}

.filter-popup {
    position: absolute;
    display: none;
    z-index: 10 !important;
    width: 290px;
    background-color: #F6FAFB;
    padding: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 5px;
    -webkit-box-shadow: 0px 3px 15px 0px rgba(34, 60, 80, 0.3);
    -moz-box-shadow: 0px 3px 15px 0px rgba(34, 60, 80, 0.3);
    box-shadow: 0px 3px 15px 0px rgba(34, 60, 80, 0.3);
}

.filter-popup h1 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #000000;
    font-size: 16px;
}

.table-filter-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
}

.filter-popup input {
    overflow: hidden;
    text-align: left;
    padding: 8px;
    border-radius: 5px;
    color: #78818E;
    font-size: 14px;
    background-color: #FFFFFF;
    border: 1px solid #D9D9D9;
    width: 120px;
}

.filter-popup button {
    padding: 8px;
    border-radius: 5px;
    background-color: #4886FF;
    color: #FFFFFF;
    border: 1px solid #4886FF;
    width: 100%;
    margin-top: 5px;
}
.filter-popup button:hover {
    background-color: #396ed5;
    color: #D9D9D9;
    cursor: pointer;
}
.table-button-small, .table-button-small-active {
    width: 136px !important;
}
.table-button-small-active {
    background-color: #78818E !important;
    cursor: default !important;
    border: none !important;
}
.active-filter {
    background-color: #4886FF;
    width: 90%;
    height: 4px;
    border-radius: 8px;
    position: absolute;
    bottom: 0;
}