: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;
}

.modalCertificadoAnular .modal-dialog {
    max-width: 600px;
}

.modalCertificadoAnular .modal-content {
    border-radius: 18px;
    border: none;
}

.modalCertificadoBody {
    position: relative;
    padding: 40px 38px 36px;
}

.modalCertificadoClose {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #cfcfcf;
    background: #fff;
    color: #b5b5b5;
    font-size: 18px;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalCertificadoTitulo {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 28px;
}

.modalCertificadoDatos {
    width: 82%;
    margin: 0 auto 24px;
    font-size: 14px;
    line-height: 1.25;
}

.modalCertificadoAlerta {
    width: 100%;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
    color: #842029;
    border-radius: 7px;
    padding: 13px 14px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.modalCertificadoFooter {
    display: flex;
    justify-content: center;
    gap: 70px;
}


@media (max-width: 600px){
  .pagination{
    overflow-x: scroll !important;
  }
}