h3 {
    color: #343a40;
    margin-bottom: 20px;
}

.choices {
    border-radius: 1rem!important;
    border: 1px solid #ced4da;
    overflow: hidden;

}
.choices.is-open {
    border-radius: 1rem!important;
    border: 1px solid #ced4da;

}
.choices.is-open.is-focused {
    border-radius: 1rem!important;
    border: 1px solid #ced4da;

}
.choices.is-open.is-focused.isflipped {
    border-radius: 1rem!important;
    border: 1px solid #ced4da;

}

/* Style the container */
.choices__inner {
    border-radius: 1rem!important;
    min-height: 45px;
    padding: 7px 10px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.choices__inner:focus,
.choices__inner.is-focused {
    overflow: hidden;
    border-radius: 1rem!important;
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Style selected items */
.choices__item--selectable {
    background-color: #deecff;
    color: #fff;
    border-radius: 0.375rem;
    padding: 3px 8px;
    margin: 2px;
}
.choices__item{
    color: #000;
}
.choices__item:hover{
    color: #f07300!important;
}

.choices__button {
    color: #737373;
    margin-left: 5px;
}

/* Placeholder text */
.choices__placeholder {
    color: #6c757d;
}

/* Dropdown style */
.choices__list--dropdown,
.choices__list[aria-expanded] {
    border-radius: 1rem;
    border: 1px solid #dee2e6;
    padding: 5px 2px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.choices__list--dropdown .choices__item--selectable:hover {
    background-color: #e9ecef;
    color: #000;

}