/* ============================
   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;   /* mismo naranja que Contratos */
  color: #fff;
}

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

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

/* ============================
   BOTONES
   ============================ */
.btn {
  background: #ff8200;   /* naranja botón igual a Contratos */
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn:hover {
  opacity: 0.9;
}

/* Botón deshabilitado */
.btn[disabled] {
  background: #999 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}

/* Badge Admin */
.badge-admin {
  background: #e53935;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: bold;
}

/* ============================
   DATAGRID - FILA DE FILTROS
   ============================ */

/* Fila de filtros con fondo teal muy suave */
.dx-datagrid .dx-row.dx-datagrid-filter-row > td {
  background-color: #E6FFFA !important;   /* teal muy claro */
  border-bottom: 1px solid #b2f5ea !important;
}

/* Editores dentro de la fila de filtro sin fondo blanco */
.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;
}
