/* Choices.js Custom Styling */

.choices {
    margin-bottom: 0;
}

.choices__inner {
    background-color: #ffffff;
    border: 1px solid #c5cae9;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.95rem;
    min-height: 38px;
}

.choices__inner:focus-within {
    border-color: #0a3f8f;
    box-shadow: 0 0 0 3px rgba(10, 63, 143, 0.1);
}

.choices__list--single {
    padding: 0;
}

.choices__item--selectable {
    padding: 4px 8px;
}

.choices__item--selected {
    background-color: #0a3f8f;
    border-color: #0a3f8f;
    color: #ffffff;
}

.choices__input {
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 0.95rem;
}

.choices__input:focus {
    outline: none;
}

.choices__placeholder {
    opacity: 0.6;
    color: #666;
}

.choices__list--dropdown {
    background-color: #ffffff;
    border: 1px solid #c5cae9;
    border-radius: 6px;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: 250px;
    overflow-y: auto;
}

.choices__list--dropdown .choices__item {
    padding: 10px 12px;
    font-size: 0.95rem;
    color: #333;
}

.choices__list--dropdown .choices__item--selectable:hover,
.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f0f0f0;
    color: #0a3f8f;
}

.choices__list--dropdown .choices__item--selected {
    background-color: #e8f0f7;
    color: #0a3f8f;
    font-weight: 600;
}

.choices__no-results {
    padding: 10px 12px;
    color: #999;
    font-size: 0.95rem;
}

.choices__button {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a3f8f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    width: 16px;
    height: 16px;
    padding: 0;
    background-size: contain;
    background-position: center;
}
