/*
  MyFuel: grid filter row inputs (e.g. Dashboard Top 10 Invoices).
  ThemeBuilder desexport.css sets .k-textbox.k-input.k-input-solid / .k-input.k-input-solid
  to border-color #0252c9 — loads before main.css but IgniteUI + later sheets can win.
  This file is linked LAST in _Host.cshtml so these rules take effect.
*/

.k-filter-row .k-filtercell .k-filtercell-wrapper .k-textbox.k-input.k-input-solid,
.k-filter-row .k-filtercell .k-filtercell-wrapper span.k-input.k-input-solid,
.k-filter-row .k-filtercell .k-filtercell-wrapper .k-input.k-input-solid:not(.k-multiselect),
.k-filter-row .k-filtercell .k-filtercell-wrapper .k-dropdownlist.k-input,
.k-filter-row .k-filtercell > span .k-textbox.k-input.k-input-solid,
.k-filter-row .k-filtercell .k-filtercell-wrapper .k-textbox.k-input {
    border: solid 1px #ced4da !important;
    border-bottom-color: #ced4da !important;
    border-left-color: #ced4da !important;
    border-right-color: #ced4da !important;
    border-top-color: #ced4da !important;
    box-shadow: none !important;
}

.k-filter-row .k-filtercell .k-filtercell-wrapper .k-textbox.k-input.k-input-solid:focus-within,
.k-filter-row .k-filtercell .k-filtercell-wrapper .k-textbox.k-input.k-input-solid.k-focus,
.k-filter-row .k-filtercell .k-filtercell-wrapper .k-input.k-input-solid:focus-within,
.k-filter-row .k-filtercell .k-filtercell-wrapper .k-dropdownlist.k-input:focus-within {
    border-color: #86b7fe !important;
    border-bottom-color: #86b7fe !important;
    border-left-color: #86b7fe !important;
    border-right-color: #86b7fe !important;
    border-top-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

/* Native <input> inside filter — outer span.k-input is the only visible frame */
.k-filter-row .k-filtercell .k-input-inner,
.k-filter-row .k-filtercell input.k-input-inner,
.k-filter-row .k-filtercell textarea.k-input-inner {
    border: 0 !important;
    border-style: none !important;
    border-width: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    background-clip: padding-box;
    -webkit-appearance: none;
    appearance: none;
}

.k-filter-row .k-filtercell .k-input-inner:focus,
.k-filter-row .k-filtercell .k-input-inner:focus-visible,
.k-filter-row .k-filtercell input.k-input-inner:focus {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}
