* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #f8f9fa;
  font-family: "Roboto", sans-serif !important;
  font-weight: normal !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: auto;
  padding-top: 56px; /* Altura del header */
  padding-bottom: 56px; /* Altura del footer */
  scroll-behavior: smooth;
}

.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.sticky-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}

header {
  width: 100%;
  height: 60px;
}

footer {
  background-color: #333;
  color: #fff;
  max-height: 10%;
  font-size: 0.8rem;
}

.table {
  font-size: 0.8rem;
}
/* Estilos para las filas alternadas */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #c7e3ff !important; /* Color de fondo para filas impares */
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: #e9ecef !important; /* Color de fondo para filas pares */
}

/* Estilos para hover */
.table-hover tbody tr:hover {
  background-color: #2b59ff !important; /* Color de fondo al pasar el cursor por encima */
}
/* Cambiar el color de toda la fila al hacer hover */
.table-hover tbody tr:hover td {
  color: white !important; /* Cambiar color de fondo de todas las celdas al hacer hover */
}
.table-hover tbody tr:hover td a {
  color: white !important;
}

/* MODIFICACIONES AL SCROLLBAR */
/* Estilo para el scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Estilo para el thumb (barra deslizante) */
::-webkit-scrollbar-thumb {
  background-color: #3498db; /* Color del thumb (barra deslizante) */
  border-radius: 10px; /* Bordes redondeados del thumb */
}

/* Estilo para el track (fondo del scrollbar) */
::-webkit-scrollbar-track {
  background-color: #ecf0f1; /* Color del fondo del scrollbar */
  border-radius: 10px; /* Bordes redondeados del track */
}

/* Estilo para los botones de flecha */
::-webkit-scrollbar-button {
  display: none; /* Oculta los botones de flecha en WebKit (Chrome, Safari, etc.) */
}

/* Estilo para el scrollbar en Firefox */
* {
  scrollbar-color: #3498db #ecf0f1; /* Color del thumb y track en Firefox */
  scrollbar-width: thin; /* Ancho del scrollbar en Firefox */
}

/* Estilo para el scrollbar en Microsoft Edge y en IE 11 */
* {
  -ms-overflow-style: none; /* Oculta el scrollbar en IE 11 y Microsoft Edge */
}

*::-ms-scrollbar-thumb {
  background-color: #3498db; /* Color del thumb en IE 11 y Microsoft Edge */
}

*::-ms-scrollbar-track {
  background-color: #ecf0f1; /* Color del track en IE 11 y Microsoft Edge */
}

div#responseEntradaVarios {
  background-color: #dbdbdb47;
  min-height: 50px;
  border: 1px solid rgba(128, 128, 128, 0.247);
  border-radius: 6px;
  box-shadow: gray;
  display: block;
  text-align: center;
  align-items: center;
}

/* Efecto sombra del Scroll */
.contenedor-pagina {
  padding: 20px;
}

.shadow-on-scroll {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px; /* Altura de la sombra */
  background: linear-gradient(
    to bottom,
    rgba(81, 69, 252, 0.295),
    rgba(255, 64, 64, 0.171)
  );
  pointer-events: none;
  z-index: 1000;
}
