
@keyframes marquee {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.animate-marquee {
  display: inline-block;
  animation: marquee 40s linear infinite;
}
/* Improved styles for Manage SKUs modal and SKU table layout */
#skuModal .grid-cols-2 {
  grid-template-columns: 1fr 1fr;
}
#skuModal input {
  border: 1px solid #ccc;
  padding: 6px 8px;
  border-radius: 4px;
  background-color: #fff;
   }
#skuModal .relative {
  position: relative;
}
#skuModal .border-b {
  border-bottom: 1px solid #e2e8f0;
}
#skuList div,
#mappedSkuList div {
  background-color: #f9fafb;
  padding: 8px;
  border-radius: 4px;
}
#skuList input,
#mappedSkuList input {
  font-size: 0.875rem;
}
#skuList {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#mappedSkuList {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#skuModal .text-gray-800 {
  font-weight: 500;
}
#skuModal .text-sm {
  font-size: 0.85rem;
}
#skuModal .hover\:bg-blue-100:hover {
  background-color: #ebf8ff;
}
#skuModal .cursor-pointer {
  cursor: pointer;
}