.rating-container {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
}

.rating-text {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.stars {
    display: inline-block;
    direction: rtl;
    /* Right to left for easier hover effect */
    unicode-bidi: bidi-override;
}

.stars input {
    display: none;
}

.stars label {
    font-size: 40px;
    color: #ddd;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s;
}

.stars label:hover,
.stars label:hover~label,
.stars input:checked~label {
    color: #ffcc00;
}

.result {
    margin-top: 20px;
    font-size: 16px;
    color: #555;
    height: 20px;
}

.rating-label {
    width: -moz-fit-content;
    width: fit-content;
}

.rating-column.checked {
    color: #ffcd03ff;
}
#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;
}

table.dataTable > tbody > tr:has(.priority-show-home) {
    background-color: #94ffb9 !important;
}

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

.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(.not-published) {
    background-color: rgba(255, 0, 0, 0.3) !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);
    }
}

.cke_top {
    background-color: transparent !important;
    border-radius: 5px !important;
}

.cke_inner {
    border-radius: 10px !important;
}

.cke_chrome {
    border-radius: 10px !important;
}

#cke_1_bottom {
    border-bottom-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
    background-color: transparent !important;
}

.cke_toolbox_collapser.cke_toolbox_collapser_min {
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100%;
    background-color: transparent !important;
}
a.cke_toolbox_collapser {
    border-radius: 5px !important;
}

.cke_combo_button:hover {
  border-radius: 10px !important;
  background-color: #eeeeeeaa !important;
}
