/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/


/* Tamaño de texto predeterminado */
.text-responsive {
    font-size: 16px; /* Tamaño base del texto */
}

/* Ajuste para pantallas medianas (tablets) */
@media (max-width: 768px) {
    .text-responsive {
        font-size: 14px;
    }
}

/* Ajuste para pantallas pequeñas (teléfonos) */
@media (max-width: 576px) {
    .text-responsive {
        font-size: 12px;
    }

    .table td {
        padding: 6px 1px !important;  /* Reducir el padding en teléfonos */
    }
}

/* Ajuste para pantallas muy pequeñas */
@media (max-width: 360px) {
    .text-responsive {
        font-size: 10px;
    }
}

.highlight {
    border: 2px solid red;
}

.btn-fijo {
    min-width: 100px;
}