
/* Light Mode Dropdowns for Select2 */
.select2-container--default .select2-selection--single, 
.select2-container--default .select2-selection--multiple {
    background-color: #ffffff !important;
    border: 1px solid #ced4da !important;
}

/* Default Text Color (Black) */
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    color: #444 !important;
}

/* Dropdown Results List (White Background) */
.select2-container--default .select2-results > .select2-results__options {
    background-color: #ffffff !important;
    color: #333 !important;
}

/* Hover/Arrow-over effect: Jazzmin Blue */
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #3c8dbc !important; /* Jazzmin primary blue */
    color: #ffffff !important;
}

/* Standard HTML dropdowns fix */
select.form-control,
#changelist-form select,
select[name=action] {
    background-color: #ffffff !important;
    color: #333 !important;
}

#changelist-form select option {
    background-color: #ffffff !important;
    color: #333 !important;
}

/* ── filter_horizontal widget (Categories chooser) ── */

/* Arrow buttons — transparent background, just color the arrow icon */
.selector-chooser li {
    margin: 4px 0 !important;
}
.selector-chooser button {
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    color: #4fc3f7 !important;
    width: 36px !important;
    height: 36px !important;
    cursor: pointer !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    padding: 0 !important;
    text-indent: 0 !important;
    line-height: 36px !important;
}
.selector-chooser button:hover {
    color: #81d4fa !important;
    background-color: transparent !important;
}

/* Hide "(click to clear)" span — filter still works, just no label */
.list-footer-display__clear {
    display: none !important;
}

/* ── Retail Stores & Personnel — uppercase display ── */
/* Applies to list view rows and detail form field values */
.app-mart_retail.model-retailstore td,
.app-mart_retail.model-retailstore .form-row .readonly,
.app-mart_retail.model-retailstore input[type=text],
.app-mart_retail.model-retailpersonnel td,
.app-mart_retail.model-retailpersonnel .form-row .readonly,
.app-mart_retail.model-retailpersonnel input[type=text] {
    text-transform: uppercase;
}
