
/* verde: #962022
*/
body, button, .btn, .form-control, table.dataTable {
font-family: Roboto, 'Segoe UI', Tahoma, sans-serif;
    font-size: 86.25%;
}

.bg-dark {
    background-color: #962022!important;
}
a {
    color: #962022;
    text-decoration: none;
}
a:hover {
  color:#d00e3d;
}
.btn:hover {
  background: #d00e3d;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #d00e3d;
    color: white;
}

.btn-primary {
    color: #fff;
    background-color: #962022;
    border-color: #962022;
}

.body-login {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #962022;
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
  background: #f5f5f5;
  border-radius: 10px;
  opacity: 0.8;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.header-margin {
margin-top:60px;
}

@media (min-width: 760px) {
  .header-margin {
    margin-top:80px;
  }
}

#userimagen {
  border-radius: 50%;
  border:#666 1px solid;
  width:30px;
}
#username {
  color:#fff;
}

.footer {
  margin-top:15px !important;
}

.green {
  color:#962022;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #d00e3d;
    border-color: #d00e3d;
}

table.dataTable tbody tr.selected, table.dataTable tbody th.selected, table.dataTable tbody td.selected {
    color: black !important;
}

.btn-yellow {
  background-color: yellow;
}

@media all {
   div.saltopagina{
      display: none;
   }
}

@media print{
   div.saltopagina{
      display:block;
      page-break-before:always;
   }
}

#tblmuestrapedido, #tblcargaarticulo {
  font-size:11px !important;
}

.selected {
  background-color: #cccccc;

}

checkbox {
  cursor: pointer
}

.modal-content {
  overflow: unset;
}


li > a.page-item {
  color: #333;
}

/* Estilo para las miniaturas dentro de la tabla */
.thumbnail-gallery {
    width: 50px;      /* Tamaño pequeño para tabla */
    height: 50px;
    object-fit: cover; /* Recorta la imagen para que sea cuadrada */
    cursor: pointer;
    transition: transform 0.2s;
    border-radius: 4px;
}

.thumbnail-gallery:hover {
    transform: scale(1.1); /* Efecto de zoom sutil al pasar el mouse */
}

/* El Modal se mantiene igual al ejemplo anterior */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; top: 0;
    width: 100%; height: 100%; 
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 85%;
    max-height: 85%;
    cursor: pointer;
    animation: zoom 0.3s; /* Animación de entrada */
}

@keyframes zoom {
    from {transform: scale(0.7)} 
    to {transform: scale(1)}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}