/* =========================
   CONTENEDOR GENERAL
========================= */
.tabulator {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #000;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  background-color: #fff;
}

/* =========================
   HEADER
========================= */
.tabulator .tabulator-header {
  background-color: #003366;
  border-bottom: 3px solid #d4a017; /* dorado más sobrio */
}

/* COLUMNAS HEADER */
.tabulator .tabulator-col {
  background-color: #003366 !important;
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: background 0.15s ease;
}

.tabulator .tabulator-col:hover {
  background-color: #002a5c !important;
}

/* TITULOS */
.tabulator .tabulator-col-title {
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
}

/* INPUTS FILTRO */
.tabulator .tabulator-header input {
  width: 100%;
  height: 26px;
  margin-top: 4px;
  border-radius: 4px;
  border: 1px solid #ced4da;
  padding: 4px 6px;
  font-size: 12px;
}

/* =========================
   FILAS
========================= */
.tabulator .tabulator-row {
  transition: background 0.15s ease;
}

/* ALTERNADO */
.tabulator .tabulator-row:nth-child(even) {
  background-color: #f4f6f9;
}

/* HOVER SUAVE */
.tabulator .tabulator-row:hover {
  background-color: #eef4fb;
}

/* SELECCION */
.tabulator .tabulator-row.tabulator-selected {
  background-color: #cfe2ff;
  color: #000;
}

/* =========================
   CELDAS
========================= */
.tabulator .tabulator-cell {
  padding: 8px 10px;
  border-right: 1px solid #dee2e6;
  vertical-align: middle;
}

/* =========================
   COLUMNA ACCIONES
========================= */
.tabulator .tabulator-col[tabulator-field="acciones"] {
  text-align: center;
}

/* =========================
   FOOTER / PAGINACION
========================= */
.tabulator .tabulator-footer {
  background-color: #003366;
  color: #ffffff;
  border-top: 2px solid #002244;
  padding: 6px 10px;
  font-size: 13px;
}

/* TEXTO */
.tabulator .tabulator-footer span {
  color: #ffffff;
}

/* BOTONES */
.tabulator .tabulator-footer .tabulator-paginator button {
  background-color: #ffffff;
  color: #003366;
  border: 1px solid #003366;
  margin: 0 2px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  transition: all 0.15s ease-in-out;
}

/* HOVER */
.tabulator .tabulator-footer .tabulator-paginator button:hover {
  background-color: #003366;
  color: #ffffff;
}

/* ACTIVO */
.tabulator .tabulator-footer .tabulator-page.active {
  background-color: #d4a017;
  color: #000;
  border-color: #d4a017;
  font-weight: 600;
}

/* DESHABILITADO */
.tabulator .tabulator-footer .tabulator-page.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* SELECT PAGINACION */
.tabulator .tabulator-footer select {
  border-radius: 4px;
  padding: 3px 6px;
  border: 1px solid #ced4da;
  font-size: 12px;
}
