:root {
  --gruen: #2e7d32;
  --gruen-dark: #1b5e20;
  --bg: #f9fafb;
  --bg-card: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --text: #1a1a1a;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.sn-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.sn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; /* WICHTIG: Verhindert Blockierung von Formularfeldern */
  border-radius: inherit;
}

.btn-primary {
  background-color: var(--gruen);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.2s;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--gruen-dark);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  color: var(--gruen);
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  border: 1px solid var(--gruen);
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--gruen);
  color: white;
}

/* Status-Badges */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-in-planung {
  background-color: #e5e7eb;
  color: #374151;
}

.badge-geplant {
  background-color: #dcfce7;
  color: #166534;
}

.badge-ausgebucht {
  background-color: #ffedd5;
  color: #9a3412;
}

.badge-verschoben {
  background-color: #fef9c3;
  color: #854d0e;
}

.badge-abgesagt {
  background-color: #fee2e2;
  color: #991b1b;
}

.badge-tourbericht-ausstehend {
  background-color: #dbeafe;
  color: #1e40af;
}

.badge-tourbericht-verfuegbar {
  background-color: #d1fae5;
  color: #065f46;
}

/* Print styles */
@media print {
  nav, .no-print { display: none !important; }
}
