  :root {
  /* Light Theme Colors */
  --sidebar-bg: #F5F5F5;
  --primary-color: #4F46E5;
  --secondary-color: #3B82F6;
  --background-color: #FFFFFF;
  --border-color: #E5E7EB;
  --text-color: #111827;
  --text-secondary: #6B7280;
}

body.dark-theme {
  /* Dark theme colors */
  --sidebar-bg: #1F2937;
  --primary-color: #8B5CF6;
  --secondary-color: #60A5FA;
  --background-color: #111827;
  --border-color: #374151;
  --text-color: #F9FAFB;
  --text-secondary: #9CA3AF;
}

/* Jonas */
.main-view {
  display: flex;
  flex-direction: column;
}

.wissen {
    margin-bottom: 5rem;
}
    .wissen h2 {
      text-align: center; /* Überschrift zentrieren */
    }
    .wissen ul {
      list-style-type: disc; /* normale Aufzählungspunkte */
      text-align: center;    /* etwas Abstand links */
    }

