:root {
  --color-primario: #002E4F;
  --color-secundario: #FFF203;
  --color-alerta: #90CB41;
}

.texto, h2, h3, .titulo-infracciones {
  color: var(--color-primario);
}

.botones button,
.botones input[type="submit"],
.botones input[type="reset"] {
  background-color: var(--color-alerta);
  color: white;
}

.botones button:hover,
.botones input[type="submit"]:hover,
.botones input[type="reset"]:hover {
  background-color: var(--color-primario);
  color: white;
}

.tabla-datos th,
.tabla-detalle th {
  background-color: var(--color-primario);
  color: white;
}

