body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(145deg, #eef2f3, #c9d6ff);
  margin: 0; padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  width: 100%;
}

.container {
  overflow-x: auto; /* Neu hinzugefügt */
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 800px; /* optional: Mindestbreite für komfortables Layout */
}


h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.8rem;
  text-align: center;
}
form input, button {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}
button {
  background: #007BFF;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}
button:hover {
  background: #0056b3;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.95rem;
}
th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}
th {
  background-color: #f2f2f2;
  color: #333;
}
a.link, .btn, .logout {
  display: inline-block;
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  background: #007BFF;
  color: white;
  transition: background 0.3s;
}
a.link:hover, .btn:hover, .logout:hover {
  background: #0056b3;
}
