#item-label {
  font-family: Arial, sans-serif;
  border: 1px solid #000;
  padding: 10px;
  max-width: 300px;
}

.item-label-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.quantity-controls {
  display: flex;
  align-items: center;
}

.quantity-controls button {
  background-color: #eee;
  border: 1px solid #ccc;
  width: 20px;
  height: 20px;
  text-align: center;
  cursor: pointer;
}

.quantity-controls input {
  width: 40px;
  text-align: center;
  margin: 0 5px;
}

.item-name {
  font-size: 1.2em;
  font-weight: bold;
}

.thick-line {
  border-top: 8px solid black;
}

.thin-line {
  border-top: 1px solid black;
  margin: 4px 0;
}

.serving-size {
  font-weight: bold;
  margin-bottom: 5px;
}

.section-title, .sub-section {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 12px;
  line-height: 11px;
}

.sub-section {
  margin-left: 15px;
}

.extra-indent {
  margin-left: 30px;
}

.value, .daily-value {
  font-weightX: bold;
}

.daily-value {
  text-align: right;
}

.footer {
  font-size: 0.9em;
  margin-top: 10px;
}

.disclaimer {
  margin-bottom: 5px;
  font-size: 0.9em;
  line-height: 1em;
}

.ingredients {
  font-weight: normal;
}

input[type=number] {
    -webkit-appearance: textfield; /* Ensure the textfield appearance is used */
    appearance: textfield; /* Standard property */
    position: relative; /* This might help retain arrow visibility */
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    opacity: 1; /* Force visibility */
    display: inline-block; /* Make sure they display */
}