/* CSS để ẩn hoàn toàn mũi tên input number */

/* Ẩn mũi tên trên tất cả input number */
input[type="number"] {
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
  appearance: none !important;
}

/* Ẩn mũi tên Webkit browsers (Chrome, Safari, Edge) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  height: 100% !important;
  width: 0 !important;
  display: none !important;
}

/* Ẩn mũi tên Firefox */
input[type="number"] {
  -moz-appearance: textfield !important;
}

/* Đảm bảo input không có styling mặc định */
input[type="number"] {
  background-color: white !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
}

/* Ẩn mũi tên cho quantity input cụ thể */
#quantity-input {
  -webkit-appearance: none !important;
  -moz-appearance: textfield !important;
  appearance: none !important;
}

#quantity-input::-webkit-outer-spin-button,
#quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  height: 100% !important;
  width: 0 !important;
  display: none !important;
}

#quantity-input[type=number] {
  -moz-appearance: textfield !important;
}
