/* ============================
   ESTILOS GENERALES
   ============================ */
body {
  margin: 0;
  background: #f5f7f7;
  font-family: Segoe UI, Arial, sans-serif;
}

/* ============================
   TOP BAR
   ============================ */
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: #FFD280;   /* color naranja */
  color: #fff;
}

.top-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ============================
   BOTONES
   ============================ */
.btn {
  background: #ff8200;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

/* ============================
   CONTENEDOR PRINCIPAL
   ============================ */
.wrap {
  padding: 16px;
}

/* ============================
   DATAGRID - FILA DE FILTROS
   ============================ */
.dx-datagrid .dx-row.dx-datagrid-filter-row > td {
  background-color: #E6FFFA !important;  /* teal muy suave */
  border-bottom: 1px solid #b2f5ea !important;
}

/* Inputs dentro del filtro */
.dx-datagrid .dx-row.dx-datagrid-filter-row .dx-texteditor-input,
.dx-datagrid .dx-row.dx-datagrid-filter-row .dx-selectbox-container,
.dx-datagrid .dx-row.dx-datagrid-filter-row .dx-datebox {
  background-color: transparent !important;
}
