.credit_heart {
    color: #717ff5 !important;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.datatable-selector {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ced4da;
    background-color: #fff;
    color: #495057;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: auto;
}

.datatable-selector:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.datatable-selector option {
    background-color: #fff;
    color: #495057;
    width: auto;
}

.options-list {
    display: none;
    left: 50%;
    z-index: 1000;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
}

.search-input-container {
    text-align: center;
    margin-bottom: 10px;
}

.smaller-input {
    width: 80%;
    margin: 0 auto;
}

.options div:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.cursor-pointer:hover {
    cursor: pointer;
}

.custom-multiselect {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.custom-multiselect .selected-options {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    display: inline-block;
}

.custom-multiselect .dropdown {
    display: none;
    position: absolute;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1;
    border-radius: 5px;
}

.custom-multiselect .dropdown.show {
    display: block;
}

.custom-multiselect .dropdown label {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.custom-multiselect .dropdown label input {
    margin-right: 10px;
}

.custom-multiselect .dropdown .select-all {
    font-weight: bold;
    background-color: #e9e9e9;
    padding: 10px;
    display: flex;
}

@media (max-width: 600px) {
    .custom-multiselect {
        max-width: 100%;
    }

    .custom-multiselect .dropdown {
        max-height: 150px;
    }
}