:root {
  --background: #ffffff;
  --foreground: #171717;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
  html {
    /* color-scheme: dark; */
  }
}

.falta-pago {
  color: #dc3545 !important;
  font-weight: 800;
}

.pagado-completo {
  color: #198754 !important;
  font-weight: 800;
}

.pagado-sin-lomo {
  color: #0d6efd !important;
  font-weight: 800;
}

.custom-pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-pagination .page-item {
  cursor: pointer;
}

/* Aplica la regla a todos los inputs de tipo number */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* Para Firefox */
}


.custom-pagination .page-item.active .page-link {
  background-color: #F4B512;
  color: white;
  border-color : #F4B512;
}

.custom-pagination .page-link {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid #ddd;
  color: #707070;
  text-decoration: none;
}

.custom-pagination .page-link:hover {
  background-color: #f8f9fa;
  color: #000;
}


@media (max-width: 600px){
  .pagination{
    overflow-x: scroll !important;
  }
}