/* Grundlayout */

	/* Sticky Header für die A–Z Navigation */
	.sticky-header {
	  position: fixed;   /* Bleibt immer an der gleichen Stelle im Viewport */
	  top: 85px;         /* 20px vom oberen Rand */
	  right: 20px;       /* 20px vom rechten Rand */
	  z-index: 1000;     /* Damit er über anderen Inhalten bleibt */
	  background: #f8f8f8; /* Heller Hintergrund (optional) */
	  padding: 5px;
	  border: 1px solid #ddd;  /* Dezenter Rahmen */
	  border-radius: 5px;
	}

	.sticky-header a {
	  display: block;         /* Ordnet die Links untereinander */
	  margin-bottom: 5px;      /* Abstand zwischen den Links */
	  text-decoration: none;
	  color: #007BFF;
	  //font-weight: bold;
	  font-size: 14px;
	}

	.sticky-header a:hover {
	  //text-decoration: underline;
		background-color: lightgrey;
	}

/* Accordion-Stil */
.accordion {
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
  background: #fafafa;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.accordion-header:hover {
  background: #f0f0f0;
}

.accordion-header.active {
  background: #e0e0e0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.accordion-content.open {
  padding: 0.5rem 1rem 1rem;
}

.accordion-content div {
  margin-bottom: 0.5rem;
}

/* 1. Grundstil: Linie und etwas Abstand */
.accordion-content > div {
  border-bottom: 1px solid #e0e0e0;
  padding: 0.5rem 0;
}

/* 2. Letztes Element ohne Linie */
.accordion-content > div:last-child {
  border-bottom: none;
}

    a {
      text-decoration: none;
    }


  	/* Sticky Header für die A–Z Navigation */
  	.sticky-header {
  	  position: fixed;   /* Bleibt immer an der gleichen Stelle im Viewport */
  	  top: 85px;         /* 20px vom oberen Rand */
  	  right: 20px;       /* 20px vom rechten Rand */
  	  z-index: 1000;     /* Damit er über anderen Inhalten bleibt */
  	  background: #f8f8f8; /* Heller Hintergrund (optional) */
  	  padding: 5px;
  	  border: 1px solid #ddd;  /* Dezenter Rahmen */
  	  border-radius: 5px;
  	}

  	.sticky-header a {
  	  display: block;         /* Ordnet die Links untereinander */
  	  margin-bottom: 5px;      /* Abstand zwischen den Links */
  	  text-decoration: none;
  	  color: #007BFF;
  	  //font-weight: bold;
  	  font-size: 14px;
  	}

  	.sticky-header a:hover {
  	  //text-decoration: underline;
  		background-color: lightgrey;
  	}


    /* Alpha-Container oben */
    .alpha-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .alpha-container button {
      width: 2.5rem;
      height: 2.5rem;
      line-height: 2.5rem;
      text-align: center;
      font-size: 1rem;
      background: #e6e6e6;
      border: 1px solid #ccc;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .alpha-container button:hover {
      background: #d4d4d4;
    }

    .alpha-container button.selected {
      background: #ffd700;
      color: #000;
      border-color: #e3b700;
      font-weight: bold;
    }

    /* Content-Container */
    .glossary-content {
      border: 1px solid #ccc;
      border-radius: 4px;
      padding: 1rem;
      min-height: 10rem;
      background: #fafafa;
      overflow-y: auto;
    }
    /* 1. Grundstil: Linie und etwas Abstand */
    .glossary-content > div {
      border-bottom: 1px solid #e0e0e0;
      padding: 0.5rem 0;
    }

    /* 2. Letztes Element ohne Linie */
    .glossary-content > div:last-child {
      border-bottom: none;
    }
    .entry {
      margin-bottom: 1rem;
    }

    .entry h4 {
      margin: 0 0 0.25rem;
    }

    .entry p {
      margin: 0;
    }
