/* Mobile-optimiert: Seitenbreite und Text */
body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  margin: 0;
  padding: 0;
}

/* Container mittig & responsiv */
.container {
  max-width: 90%;
  width: 100%;
  margin: 40px auto;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

/* Titelzentriert */
h1, h2 {
  text-align: center;
}

/* Eingabefelder & Buttons */
input[type="text"],
input[type="number"],
button {
  display: block;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 1rem;
  box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* Buttons schöner machen */
button {
  background-color: #007bff;
  color: white;
  border: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #0056b3;
}

/* Nachricht unten zentriert */
#message {
  margin-top: 15px;
  color: green;
  text-align: center;
}

/* Ergebnisliste im Adminbereich */
ul#results {
  list-style: none;
  padding: 0;
}

ul#results li {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/* Optional: für sehr kleine Geräte */
@media (max-width: 400px) {
  .container {
    padding: 15px;
  }
  input, button {
    font-size: 0.95rem;
  }
}
