body {
  font-family: system-ui, sans-serif;
  background: #fff;
  color: #111;
  margin: 2rem;
  line-height: 1.5;
  font-size: medium;
}

h1, h2, h3 {
  color: #222;
}

input, button {
  padding: 6px 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type='number'] {
  width: 60px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th {
  background: #f6f7f8;
  text-align: left;
  padding: 8px;
  font-weight: 600;
  border-bottom: 2px solid #ddd;
}

td {
  padding: 8px;
  border-bottom: 1px solid #eee;
}

#searchInput {
  width: 300px;
  margin-bottom: 1rem;
}

button {
  background: #f1f1f1;
  cursor: pointer;
  margin-right: 8px;
}

button:hover {
  background: #e0e0e0;
}

.highlight-3 {
  background: #fffde7;
}

.highlight-5 {
  background: #fff9c4;
}

.highlight-8 {
  background: #e8f5e9;
}

.highlight-10 {
  background: #d0f0c0;
}

#totalDisplay {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.2rem;
}

#orderSummary {
  margin-top: 2rem;
  background: #fafafa;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 4px;
}

/* Nieuwe stijlen voor header en knoppen bovenaan */
#header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

#top-controls {
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  #header-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  #top-controls {
    margin-top: 1rem;
  }
}

/* Voeg dit toe aan uw style.css bestand */
.qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-controls input[type="number"] {
    width: 50px;
    text-align: center;
    border: 1px;
    border-left: 1px;
    border-right: 1px;
    border-radius: 5px;
    -moz-appearance: textfield;
    background-color: #ffffff;
    margin-right: 8px;
}

/* Verberg standaard pijltjes in Chrome, Safari, Edge */
.qty-controls input[type="number"]::-webkit-outer-spin-button,
.qty-controls input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
}

.qty-controls button:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qty-controls button:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}