/**
 * Единое скругление полей ввода, кнопок и чипов (6px).
 * Подключается после остальных стилей страницы.
 */
:root {
  --radius-control: 6px;
}

input:not([type='checkbox']):not([type='radio']):not([type='hidden']):not(
    [type='range']
  ):not([type='color']),
select,
textarea,
button,
.chip,
.status-chips .chip,
.filter-receipt-switch,
.filter-receipt-switch button,
.product-search-dropdown,
.product-search-item,
.sub-tabs a,
.page-header button,
.filter-panel input,
.filter-panel select,
.filter-panel textarea,
.filter-panel button,
.filter-actions button,
.btn-clear,
.btn-find,
.btn-apply,
.btn-reset,
.btn-save,
.btn-cancel,
.btn-delete,
.btn-sm,
.btn-add,
.btn-refresh,
.btn-filter,
.btn-delete-header,
.btn-add-item,
.btn-outgoing-payment,
.btn-receipt,
.btn-delete-receipt,
.btn-close,
.btn-print,
.item-remove,
[class*='btn-'] {
  border-radius: var(--radius-control) !important;
}
