body {
  font-family: Arial, sans-serif;
  background-color: #ffffff; /* Hintergrund auf weiß */
  padding: 20px;
  color: #333;
  margin: 0;
}

h1 {
  margin-bottom: 20px;
}

table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

th {
  background: #eee;
}

tr.dauerparker {
  background: #fdd;
  font-weight: bold;
}

details {
  cursor: pointer;
}

footer {
  margin-top: 20px;
  font-size: 12px;
  color: #777;
}

/* Layout der Steuerleiste */
.controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* Lösch-Button (Testfahrt) */
#clearTestfahrt {
  background: #c0392b;
  color: #fff;
  border: 0;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s;
}
#clearTestfahrt:hover { background: #e74c3c; }
#clearTestfahrt:disabled { opacity: .6; cursor: wait; }

/* Statusmeldung */
#statusMsg {
  margin: 10px 0 15px;
  padding: 8px 12px;
  border-radius: 6px;
  display: none;
}
#statusMsg.ok  { background: #e8f8f0; border: 1px solid #2ecc71; color: #246b43; display: block; }
#statusMsg.err { background: #fdecea; border: 1px solid #e74c3c; color: #8a1c13; display: block; }

.logo {
  display: block;
  max-width: 600px;   /* Größe anpassen */
  height: auto;
  margin-left: auto;  /* schiebt das Logo ganz nach rechts */
  margin-right: 0;
  margin-bottom: 15px;
}
