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;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
}

.footer {
  background-color: #e02d1b;
  padding: 1rem;
  color: white;
  text-align: center;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

#tablaContenedor {
  overflow-x: auto; /* Activa el scroll horizontal */
  -webkit-overflow-scrolling: touch; /* Suaviza el scroll en dispositivos móviles */
  width: 100%; /* Asegura que no exceda el ancho del contenedor */
  position: relative;
  border: 1px solid rgba(204, 204, 204, 0);
  padding-bottom: 0px;
}


#tablaContenedor::-webkit-scrollbar {
  height: 5px; /* Altura de la barra de desplazamiento horizontal */
}

#tablaContenedor::-webkit-scrollbar-thumb {
  background-color: #ff0000; 
  border-radius: 10px;
}
#tablaContenedor::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

@media (max-width: 768px) {
  #tablaContenedor {
    overflow-x: auto;
  }
}