/* Background Login y Reg */

.backgroundLogReg {

  background-image: url('/assets/backgrounds/image_MEE-hyoy_1721425742392_raw.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  background-color: black;
}

/* contenedores para login y registro */

.login-container {
  max-width: 500px; /* Ajusta el ancho según sea necesario */
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc; /* Opcional: añade un borde */
  border-radius: 10px; /* Opcional: añade bordes redondeados */
  background-color: #fff; /* Opcional: añade un fondo blanco */
}
.form-section {
  display: none;
}
.form-section.active {
  display: block;
}

#tablaResultado{

  max-height: 600px; /* Altura máxima en píxeles */
  overflow-y: auto; /* Scroll vertical */
  width: 100%

}

.egresoProducto-container {
  max-width: 900px; /* Ajusta el ancho según sea necesario */
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc; /* Opcional: añade un borde */
  border-radius: 10px; /* Opcional: añade bordes redondeados */
  background-color: #fff; /* Opcional: añade un fondo blanco */
}

.edicionProducto-container {
  max-width: 900px; /* Ajusta el ancho según sea necesario */
  width: 100%;
  padding: 20px;
  border: 1px solid #ccc; /* Opcional: añade un borde */
  border-radius: 10px; /* Opcional: añade bordes redondeados */
  background-color: #fff; /* Opcional: añade un fondo blanco */
}

.ocultar{

  display: none;

}

.tabla300{

  max-height: 300px;
  overflow-y: auto;
  width: 100%

}

.cuadroEtiquetas{

  background-color: #ffffff;
  border: solid black;

}

.row{

  margin-left: 0;
  margin-right: 0;

}

.botonImprimir{

  background-color: rgb(46, 46, 157);
  color: white;
  border-radius: 3px;

}

.botonImprimir:hover{

  background-color: white;
  color: rgb(46, 46, 157);
  font-weight: bolder;

}

.etiquetaImpresa{

  background-color: rgb(15, 139, 102);
  color: white;
  border-radius: 3px;

}

.etiquetaImpresa:hover{

  font-weight: bolder;
  
}

.etiquetaCancelada{

  background-color: rgb(255, 5, 5);
  color: white;
  border-radius: 3px;

}

.etiquetaCancelada:hover{

  font-weight: bolder;
  
}

.encabezado{

  background-color: black;
  color: white;

}

.filaImpar{

  background-color: #dddada;

}

.filaPar{

  background-color: #fff;

}

.filaImpar:hover{

  background-color: #ccc;

}

.filaPar:hover{

  background-color: #ccc;

}

.botonSeleccionado{

  background-color: blue;
  color: white;
  font: bold;
  text-shadow: black 3px 3px 3px;
  border-color: white;

}

/* Estilos para el background de fondo de la seccion vincular SN IMEI */

.modal-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Estilo del cuadro modal */
.modal-content {
  background-color: white;
  width: 600px;
  height: 500px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
};

.encabezadoFlotante{

  position: sticky;
  top: 0;
  z-index: 1000;

};

.modal .modal-dialog {
  max-width: 600px; /* Bootstrap por defecto */
  margin: auto;
};

#modalSincro .modal-dialog {
  max-width: 100% !important; /* ancho del modal secundario */
  margin: auto; /* que quede centrado */
}

#modalSincro .modal-content {
  width: 100% !important;      /* hace que el contenido use todo el ancho disponible */
}