/*
 # ########*###########################
 Autor: José Luis Rodriguez
 Mail: jrodriguez@bincodex.com
 Web: https://bincodex.com
 Fecha: 2026-08-13
 Archivo: 16-filtros.css
 Codificación: UTF-8
 ####################################
 */


/*----------- BARRA DE FILTROS APP ---------- */
.frm-filtros {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: flex-end;
	background: #fff;
	border: 1px solid #a0a0a0;
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 16px;
}

.frm-filtros .f-filtro {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.frm-filtros .f-filtro label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #64748b;
}

.frm-filtros .f-filtro select {
	padding: 7px 10px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	min-width: 200px;
	background: #fff;
	color: #334155;
}

.frm-filtros .f-acciones {
	display: flex;
	gap: 8px;
}

.frm-filtros .f-acciones .HM-button {
	padding: 8px 18px;
	white-space: nowrap;
}


/*----------- ADAPTATIVO ---------- */
@media (max-width: 640px) {
	.frm-filtros .f-filtro,
	.frm-filtros .f-filtro select {
		width: 100%;
	}
}