/**
 * حقول الإدخال — حد موحّد 2px (يتبع ألوان الثيم)
 */
:root,
[data-theme="light"] {
    --input-border: #566a7f;
    --input-border-focus: #1a78c2;
    --input-focus-ring: rgba(26, 120, 194, 0.2);
}

[data-theme="dark"] {
    --input-border: #6d8498;
    --input-border-focus: #5ba3e8;
    --input-focus-ring: rgba(91, 163, 232, 0.28);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]):not([type="hidden"]):not([type="file"]):not([type="range"]):not([type="color"]),
textarea,
select,
.form-control,
.form-select,
.sidebar-search-input,
.select2-container--bootstrap-5 .select2-selection,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple,
.select2-search__field {
    border: 2px solid var(--input-border) !important;
}

.form-control:focus,
.form-select:focus,
.sidebar-search-input:focus,
input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]):not([type="hidden"]):not([type="file"]):not([type="range"]):not([type="color"]):focus,
textarea:focus,
select:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: var(--input-border-focus) !important;
    box-shadow: 0 0 0 2px var(--input-focus-ring) !important;
}
