body {
  margin: 0;
  padding: 0;
  background-color: #FFECEC;
  font-family: Helvetica, sans-serif;
  color: #333;
}

.navbar {
  background-color: #FF6B00;
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  background-color: white;
  color: #FF6B00;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: background-color 0.3s;
}

.navbar a:hover {
  background-color: #ffe3d0;
}

.navbar a.active {
  background-color: #ffe3d0;
}

.fullscreen {
  height: 100vh;
  background-color: #ffba97;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.corner-box {
  position: relative;
  display: inline-block;
  margin-bottom: 5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.main-title {
  font-size: 15vw;
  color: hotpink;
  font-weight: bold;
  margin: 0;
}

.subtitle {
  font-size: 1.5vw;
  color: #333;
  font-weight: bold;
}

.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 10px solid hotpink;
  z-index: 0;
}

.top-left {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.bottom-right {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

.container {
  max-width: 900px;
  margin: 0.5rem auto;
  padding: 1rem 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.beispiel-block ul {
  margin-left: 1rem;
}

.tag {
  display: inline-block;
  background-color: #FF6B00;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  margin-left: 0.5rem;
}

.button {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 0.75rem 1.5rem;
  background-color: #FF6B00;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
}


.tag-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
}

.tag-line {
  gap: 0.25rem 1.25rem;
}

.tag-item strong {
  margin-right: 0.15rem;
}

.tag-line {
  gap: 0.15rem 1rem;
}

.tag-item strong {
  margin-right: 0rem;
}

.button {
  margin-bottom: 3rem;
}

.einsatz-label {
  border: 1px solid deeppink;
  padding: 0 6px;
  border-radius: 4px;
  font-size: 90%;
  color: deeppink;
  font-weight: 500;
}

.einsatz-label-plain {
  color: deeppink;
  font-weight: 500;
}

.example-heading {
  text-align: center;
  font-size: 1.8rem;
  color: deeppink;
  margin-bottom: 1rem;
}

.secondary-banner {
  background-color: #e83e8c;
  padding: 3rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: visible;
  flex-direction: column;
}

.secondary-banner .banner-message {
  font-size: 1.5vw;
  font-weight: bold;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}








@media (max-width: 1024px) {
  .secondary-banner .banner-message {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .secondary-banner .banner-message {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .secondary-banner .banner-message {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .secondary-banner .banner-message {
    font-size: 0.8rem;
  }
}
@media (max-width: 360px) {
  .secondary-banner .banner-message {
    font-size: 0.7rem;
  }
}
@media (max-width: 300px) {
  .secondary-banner .banner-message {
    font-size: 0.65rem;
  }
}


.example-frame {
  background-color: white;
  border: 3px solid deeppink;
  border-radius: 16px;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 950px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.button:hover {
  background-color: #e65c00;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  transition: all 0.2s ease-in-out;
}

/* Dropdown-Styling */

/* Container für Dropdown */
.select-container {
    position: relative;
    display: inline-block;
    margin: 10px;
    width: 300px;
}

/* Dropdown selbst */
.select-container select {
    width: 100%;
    padding: 12px 40px 12px 20px;
    border-radius: 999px;
    border: none;
    background-color: #fef3e7;
    color: #333;
    font-size: 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Pfeil für Dropdown */
.select-container::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    border-width: 6px 5px 0 5px;
    border-style: solid;
    border-color: #666 transparent transparent transparent;
    pointer-events: none;
}

/* Bei Fokus */
.select-container select:focus {
    outline: none;
    background-color: #fbe2cb;
}

/* Stylisiertes Dropdown (Version 13) */

/* Verbessertes Dropdown-Styling */
.select-container {
    position: relative;
    display: inline-block;
    margin: 10px;
    width: 300px;
}
.select-container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 12px 40px 12px 20px;
    border: none;
    border-radius: 999px;
    background-color: #fef3e7;
    color: #333;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-image: none;
}
.select-container::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 5px 0 5px;
    border-style: solid;
    border-color: #666 transparent transparent transparent;
    pointer-events: none;
}
.select-container select:focus {
    outline: none;
    background-color: #fbe2cb;
}


/* Custom Dropdown Styling */
.custom-dropdown-wrapper {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}
.custom-dropdown {
    position: relative;
    width: 300px;
    font-size: 1rem;
    user-select: none;
}
.custom-selected {
    background-color: #fef3e7;
    padding: 12px 20px;
    border-radius: 999px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
}
.custom-options {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: none;
    z-index: 99;
}
.custom-options div {
    padding: 10px 20px;
    cursor: pointer;
}
.custom-options div:hover {
    background-color: #fbe2cb;
}
.custom-options.show {
    display: block;
}


/* Zentrierung der Dropdown-Wrapper */
.custom-dropdown-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}


/* Visueller Pfeil in jedem Button (rechts zentriert) */
.custom-selected::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 5px 0 5px;
    border-style: solid;
    border-color: #666 transparent transparent transparent;
    pointer-events: none;
}
.custom-dropdown {
    position: relative;
}
