.container-loader.loader {
  display: none;

}

.container-loader.loader.on {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
      position: fixed;
    z-index: 22222;
    background: white;

}



@keyframes latido {

  0%,
  100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(0.95);
  }

  75% {
    transform: scale(1.05);
  }
}


.container-loader.loader img {
  animation: latido 1s infinite;
  transition: transform 0.2s ease-in-out;
  width: 200px;

}

/* Estilos para el contenedor de categorías con Flexbox */
.categories-container {
  display: flex;
  width: 300px;
  flex-wrap: wrap;
      justify-content: space-evenly;
    min-width: 300px;
}

/* Estilos para cada item de categoría */
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  margin-bottom: 15px;
  width: 130px;
}

.category-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  background-color: #fff;
}

/* Estilos para el enlace dentro del item */
.category-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0.8rem;
  text-decoration: none;
  flex-direction: column;
    gap: 20px;
}

/* Estilos para las imágenes */
.category-item img {
  width: 80px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}


/* Estilos para las imágenes */
.category-item p {
  font-size: 12px;
}

.category-item:hover img {
  transform: scale(1.1);
}

/* Estilos para el nombre de la categoría */
.category-name {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333;
  font-weight: 500;
}


main img{
  max-width: 100%;
}

/* Make tables responsive and prevent overflow */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Generic table rules to avoid breaking layout */
table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  box-sizing: border-box;
}

table th, table td {
  box-sizing: border-box;
  word-wrap: break-word;
  white-space: normal;
  min-width: 200px;

}

/* Specific SKU table */
table.sku {
  width: 100%;
  max-width: 100%;
}

/* If specific tables still overflow, wrap them in a .table-responsive div in the template */