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;
}


/* Clases personalizadas */

.clasePasillo {
    flex: 0 0 auto; /* Evita que se achiquen o se expandan */
    background-color: #1866c6;
    border: 0px;
    padding: 10px;
    height: 100px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    border-radius: 8px;
}

.divPasillos {
    display: flex;
    flex-direction: row;
    overflow-x: auto; /* Scroll horizontal */
    white-space: nowrap;
    padding: 10px;
    gap: 20px;
    border: 0px;
    max-width: 100%;
}

.displayEstante {
    margin-top: 20px;
    padding: 10px;
    border: 0px;
}

.tarjetaEstante {
    height: 80px;
    width: 100px;
    background-color: #1866c6;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    overflow: hidden;
}

.contenidoTarjeta {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tarjetaEstante:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

.resaltado-pasillo {
    background-color: #e87421;
    font-weight: bold;
}

.resaltado-celda {
    border: 5px solid #e87421;
}