:root {
    /* Choices.js color variables */
    --choices-bg-color: #f9f9f9;
    --choices-bg-color-disabled: #eaeaea;
    --choices-bg-color-dropdown: #fff;
    --choices-button-opacity: 0.75;
    --choices-button-opacity-hover: 1;
    --choices-disabled-color: #eaeaea;
    --choices-highlight-color: #005F75;
    --choices-highlighted-color: #f2f2f2;
    --choices-invalid-color: #d33141;
    --choices-item-color: #fff;
    --choices-item-disabled-color: #fff;
    --choices-keyline-color: #ddd;
    --choices-placeholder-opacity: 0.5;
    --choices-primary-color: #005F75;
    --choices-text-color: #333;
    --choices-darken: black;    
    --choices-lighten: white;
}

.choices {
    height: 2.375rem;
}

.choices__inner {
    padding-top: 0;
    padding-bottom: 0 !important;
    border-radius: 0.5rem;
    min-height: 2.375rem !important;
}

.choices__list--single {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.choices__placeholder {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(33, 37, 41, 0.75) !important;
    font-weight: 400 !important;
}

.choices__list--dropdown {
    border-radius: 0.5rem;
    z-index: 5 !important;
}

.choices__item--selectable {
    font-size: 1rem;
    font-weight: 400 !important;
    line-height: 1.5;
    color: rgba(33, 37, 41, 1) !important;
}

.choices__item--choice {
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.choices__item--choice.is-highlighted {
    background-color: #f0f0f0 !important;
}

.form-control {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease, background-color 0.2s ease;
}

.form-control:focus {
    border-color: #888;
    box-shadow: 0 0 0 2.4px rgba(0, 0, 0, 0.2), inset 0 0 4px rgba(0, 0, 0, 0.08);
    background-color: #fefefe;
    outline: none;
}