#bp-filters-navbar:not(.show) {
    visibility: hidden;
    height: 0;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    /* transition: height 0.35s ease; */
    transition: none;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

#filter-button {
    display: block !important;
}

/* 
.select2-multiple-filter .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{
    min-height: 30px;
} */

.tooltip-custom {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip-custom .tooltiptext-custom {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.tooltip-custom:hover .tooltiptext-custom {
    visibility: visible;
}

div[data-testid="outgoing-message"] svg {
    vertical-align: baseline;
    padding-right: 3px;
}

.App {
    font-family: sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
}

label {
    width: 350px;
    box-sizing: border-box;
}

.react-responsive-modal-modal {
    position: fixed !important;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

table.dataTable > tbody > tr:has(.invalid-highlight) {
    background-color: #ff9494 !important;
}

table.dataTable > tbody > tr:has(.false-negative) {
    background-color: rgba(255, 148, 148, 0.5) !important;
}

table.dataTable > tbody > tr:has(.false-positive) {
    background-color: rgba(255, 150, 0, 0.5) !important;
}

table.dataTable > tbody > tr:has(.disabled-blacklist-word) {
    background-color: rgba(180, 180, 180, 0.5) !important;
}

table.dataTable > tbody > tr:has(.limited-item) {
    background-color: rgba(255, 165, 0, 0.3) !important;
}

.select2-container--bootstrap
    .select2-selection--multiple
    .select2-selection__choice {
    position: relative;
    min-height: 70px;
}

.select2-multiple-filter
    .select2-container--bootstrap
    .select2-selection--multiple
    .select2-selection__choice {
    min-height: 30px;
}

/* .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove {
  color: red !important;
  cursor: pointer;
  display: inline-block;
  font-weight: 500 !important;
  margin-right: 6px !important;
  position: absolute;
  right: 10px;
  margin-top: 20px !important;
  transform: translateX(-15px);
  top: 50%;
  z-index: 1;
} */

.select2-container--bootstrap
    .select2-selection--multiple
    .select2-selection__choice {
    color: #555;
    background: #fff;
    border: 1px solid #7c69ef !important;
    border-radius: 12px !important;
    cursor: default;
    float: left;
    margin: 6px !important;
    padding: 10px 10px !important;
}

.select2-container--bootstrap
    .select2-selection--multiple
    .select2-selection__rendered {
    box-sizing: border-box;
    display: grid !important;
    line-height: 1.42857143;
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    display: grid;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

form
    .select2-container--bootstrap
    .select2-selection--multiple
    .select2-selection__clear {
    margin-top: 8px;
    margin-left: 10px;
}

#bp-filters-navbar:not(.show) {
    visibility: hidden;
    height: 0;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    /* transition: height 0.35s ease; */
    transition: none;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

#filter-button {
    display: block !important;
}

.overall-spinner-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.overall-spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #7c69ef;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

table.dataTable > tbody > tr:has(.outdate-event) {
    background-color: #ff9494 !important;
}

.custom-action-button {
    border: 1px solid black;
    border-radius: 15px;
    padding: 2px 10px;
    margin-left: 5px;
}

.status-column {
    border: 1px solid;
    border-radius: 10px;
    padding: 5px 15px;
    justify-self: anchor-center;
    font-weight: 600;
    width: 105px;
}

.status-column.draft {
    border: 1px solid #9babc7;    
    background-color: #f5f7f9;
}
.status-column.draft::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #9babc7;
    border-radius: 10px;
    margin-right: 10px;
}

.status-column.active {
    border: 1px solid #91cc47;    
    background-color: #e5f3d3;
}

.status-column.active::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #91cc47;
    border-radius: 10px;
    margin-right: 10px;
}

.status-column.deleted {
    border: 1px solid #dd465b;    
    background-color: #f7d3d8;
}

.status-column.deleted::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #dd465b;
    border-radius: 10px;
    margin-right: 10px;
}

