  :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;
}

.header {
    background: linear-gradient(135deg, #348fcf, #67b8f7);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .header h1 {
    margin: 0;
    font-size: 1.8rem;
  }

  main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
    color: var(--text-color);
  }

  section.teilbed {
    border: 2px solid var(--text-color);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  /* Trennlinie */
.teilbed hr {
  border: none;
  border-top: 2px solid #eee;
  margin: 2rem 0;
}
  .teilbed h2, 
  .teilbed h3 {
    color: #348fcf;
    margin-top: 1.2rem;
  }

  .teilbed hr {
    border: none;
    border-top: 2px solid #e3e3e3;
    margin: 1.5rem 0;
  }

  .teilbed ul,
  .teilbed ol {
    margin: 0.5rem 0 0.5rem 1.5rem;
  }

  .teilbed li {
    margin-bottom: 0.5rem;
  }

  .teilbed ol li {
    margin-bottom: 0.8rem;
  }

  .info-box {
    color: black;
    background-color: #e8f4fa;
    border-left: 4px solid #348fcf;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    margin-top: 1rem;
  }

  .teilbed a {
    color: #348fcf;
    text-decoration: none;
  }

  .teilbed a:hover {
    text-decoration: underline;
  }

  @media (max-width: 600px) {
    .header h1 {
      font-size: 1.5rem;
    }
    section.teilbed {
      padding: 1rem;
    }
  }