body {
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #ff6600;
  text-align: center;
}

h1 {
  color: #ff6600;
}

form {
  margin: 20px auto;
  padding: 20px;
  background: #333;
  width: 300px;
  border-radius: 10px;
}

input, button {
  display: block;
  width: 90%;
  margin: 10px auto;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

input {
  background: #222;
  color: #ff6600;
}

button {
  background: #ff6600;
  color: #fff;
  cursor: pointer;
}

/* Schuhe als Flexbox für bessere Anordnung */
ul {
  list-style: none;
  padding: 0;
}

li {
  background: #444;
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* KM-Zahl hervorheben */
.km-highlight, .color-label {
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 5px;
}

.km-highlight {
  background: #ff6600;
  color: white;
}

.color-label {
  background: #007acc;
  color: white;
}


/* Update-KM Formular direkt in einer Zeile */
.km-update-form {
  display: flex;
  align-items: center;
  gap: 5px;
}

.km-update-form input {
  width: 80px;
  padding: 5px;
  font-size: 14px;
  background: #222;
  color: #ff6600;
  border: 1px solid #ff6600;
  border-radius: 5px;
}

.km-update-form button {
  padding: 5px 10px;
  font-size: 14px;
  background: #ff6600;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.delete {
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
}

.color-label {
  font-weight: normal;
  font-style: italic;
  color: #ff6600; /* Gleiche Farbe wie der Modell-Text */
  background: none; /* Kein Hintergrund, um es textlich hervorzuheben */
  padding: 0;
}


select {
  width: 95%;
  padding: 10px;
  margin: 10px auto;
  background: #222;
  color: #ff6600;
  border: 1px solid #ff6600;
  border-radius: 5px;
}

h2 {
  margin-top: 20px;
  color: #ff6600;
}

.color-label {
  font-weight: bold;
  font-size: 1em;
  padding: 3px 8px;
  background: #555;
  color: #ffcc00;
  border-radius: 5px;
  margin-left: 5px;
}
.manage-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 15px;
  background: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.manage-link:hover {
  background: #ff4500;
}

.hersteller-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hersteller-list {
  list-style: none;
  padding: 0;
  width: 300px; /* Feste Breite für alle Einträge */
}

.hersteller-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #444;
  color: #ff6600;
  margin: 5px 0;
  padding: 10px 15px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.hersteller-name {
  flex-grow: 1;
  text-align: left;
}

.delete {
  background: #ff6600;
  color: white;
  padding: 5px 8px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
}

.delete:hover {
  background: #ff4500;
}
