body {
  font-family: Arial, sans-serif;
  margin: 30px;
  background: #f5f5f5;
}

h1 {
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 40px 20px;
  text-align: center;
  text-decoration: none;
  color: black;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 20px;
}

.card:hover {
  background: #e8e8e8;
}
.status-neu {
  color: blue;
}

.status-in_bearbeitung {
  color: orange;
}

.status-fertig {
  color: green;
}

.status-storniert {
  color: red;
}

button {
  margin: 2px;
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

table {
  background: white;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
}
