/* 1. Sanfter Hintergrund für die gesamte Seite */
body.site {
  background-color: #f1f5f9; /* Dezentes Hellgrau, damit weiße Karten hervortreten */
}

/* 2. Headerbereich mit sanftem Farbverlauf */
.container-header {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%) !important;
  padding: 1.5rem 0;
  border-bottom: 3px solid #818cf8;
}

/* 3. Logo-Größe einpassen und schön ausrichten */
.header-brand img {
  max-height: 90px;
  width: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
}

/* 4. Menü-Links im Header weiß/lesbar machen */
.container-header .mod-menu a {
  color: #e0e7ff !important;
  font-weight: 500;
  padding: 0.5rem 0.85rem !important;
  border-radius: 4px;
}

.container-header .mod-menu a:hover,
.container-header .mod-menu .active > a {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
}

/* 5. Inhaltsbereich als ruhige, zentrierte weiße Fläche */
.site-grid {
  max-width: 900px;
  margin: 2rem auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

/* 6. Breadcrumbs (Brotkrumenleiste mit der Nadel) dezent gestalten */
.container-breadcrumbs {
  background: transparent !important;
  max-width: 900px;
  margin: 1rem auto 0 auto;
  padding: 0 1rem;
}