:root{--saluvet-green:#2f6b54;--saluvet-green-2:#3f8367;--saluvet-light:#e9f2ee;--ink:#1b1b1b;--muted:#6b7280;--bg:#ffffff;--paper:#f6f8f7;--radius:14px}
*{box-sizing:border-box}
body{margin:0;font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--ink);background:var(--paper)}
.wrap{max-width:1200px;margin:0 auto;padding:20px}
.site-header{background:var(--bg);border-bottom:1px solid #e5e7eb;position:sticky;top:0;z-index:10}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px}
.brand{display:flex;align-items:center;gap:10px;color:var(--saluvet-green);text-decoration:none;font-weight:800;font-size:20px}
.logo{height:28px;width:auto;display:block}
.main-nav{display:flex;gap:14px;align-items:center}
.main-nav a{color:var(--saluvet-green);text-decoration:none;font-weight:600}
.muted{color:var(--muted)}
.btn{display:inline-block;padding:10px 14px;border-radius:var(--radius);text-decoration:none;border:none;background:var(--saluvet-green);color:#fff;cursor:pointer}
.btn.ghost{background:transparent;border:1px solid var(--saluvet-green);color:var(--saluvet-green)}
.btn.small{padding:6px 10px;border-radius:10px}
.card{background:var(--bg);border:1px solid #e5e7eb;border-radius:var(--radius);padding:18px;margin:16px 0}
.card h2{margin:0 0 10px}
.grid{display:grid;gap:16px}
.grid.two{grid-template-columns:1fr 1fr}
.grid.three{grid-template-columns:1fr 1fr 1fr}
.form-row{display:grid;gap:12px;margin-bottom:12px}
label{font-weight:600}
select,
textarea,
input[type=text],
input[type=email],
input[type=date],
input[type=datetime-local],
input[type=password] {
  width: 100%;
  padding: 12px 10px; /* leicht erhöht für mehr Höhe */
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  font-size: 16px;
  line-height: 1.4;
}
.alert{padding:12px 14px;border-radius:10px;margin:10px 0}
.alert.success{background:#ecfdf5;border:1px solid #10b981;color:#065f46}
.alert.error{background:#fef2f2;border:1px solid #ef4444;color:#991b1b}
.accordion{border:1px solid #e5e7eb;border-radius:var(--radius);overflow:hidden;margin:12px 0}
.accordion summary{cursor:pointer;padding:12px 16px;background:#fff;font-weight:700;color:var(--saluvet-green)}
.accordion .body{padding:12px 16px;background:#fff;border-top:1px solid #e5e7eb}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border-bottom:1px solid #eee;text-align:left}
.badge{display:inline-block;background:var(--saluvet-light);color:var(--saluvet-green);border-radius:999px;padding:2px 10px;font-size:12px}

/* --- Dropdown-Menü korrigiert --- */
.dropdown {
  position: relative;
}

.dropdown button {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%; /* direkt unter dem Button */
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: none;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  z-index: 20; /* sicher über anderem Content */
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block; /* bleibt offen, solange Maus darüber ist */
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #1b1b1b;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: var(--saluvet-light);
}

/* --- Footer bleibt unverändert --- */
.site-footer{border-top:1px solid #e5e7eb;background:#fff}
