<style>
    #openFormBtn {
      display: none;
      position: absolute;
      background: #fff;
      padding: 16 px;
      border: 1px sold #ccc;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      z-index: 1000;
    }
    .notification {
      display: none;
      position: fixed;
      top: 20px; right: 20px;
      background: #4caf50;
      color: white; 
      padding: 12px 20px;
      border-radius: 8px;
      z-index: 2000;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    }
    .overlay {
      display: none; /* wird per JS sichtbar */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
    }
    .popup {
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      width: 75vw;
      height: 75vh;
      overflow-y: auto;
      transform: scale(0.95);
      z-index: 1001; /* liegt über Overlay */
      animation: popupFadeIn 0.25s ease;
    }
    .zweispaltig {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .links {
      flex: 1;
    }
    .rechts {
      flex: 1;
      text-align: right;
    }
    .rechts img {
      max-width: 90%;
      height: auto;
     }
    .links ul ul {
      margin-top: 5px;
      margin-bottom: 15px;
    }
    
    
    @keyframes popupFadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }
    .closeBtn {
      position: absolute;
      top: 10px;
      right: 14px;
      font-size: 22px;
      color: #555;
      cursor: pointer;
      border: none;
      background: none;
    }
    .closeBtn:hover {
      color: #000;
    }
    .event-btn {
      margin-right: 10 px;
      padding: 8px 16px;
      border: 1px solid #333;
      border-radius: 5px;
      cursor: pointer;
    } 
    .event-btn:hover {
      background-color: #f0f0f0;
    }
    #formSection{
      margin-top: 20px;
      display: none;
      border: 1px solid #aaa;
      padding: 15px;
      border-radius: 5px;
      background: #fafafa;
    }
    .field {
      margin-button: 10px;
    }
    form label {
      display: block;
      margin-top: 12px;
      font-weight: 600;
    }

    input, select {
      width: 100%;
      padding: 8px;
      margin-top: 4px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    input, select, textarea, button {
      padding: 8px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 14px;
    }

    button[type="submit"] {
      background-color: #007BFF;
      color: white;
      border: none;
      cursor: pointer;
    }

    button[type="submit"] {
      margin-top: 16px;
      background-color: #28a745;
      color: white;
      border: none;
      padding: 10px 16px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 15px;
    }

    button[type="submit"]:hover {
      background-color: #218838;
    }
    #topMenuBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Buttons oben */
.menuTab {
    background: #0077cc;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

.menuTab:hover {
    background: #005fa3;
}
.menu-button.wrapper {
    position: relative;
}

/* SUBMENÜ-STIL */
.submenu {
    position: absolute;
    top: 100%;     
    left: 0;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9998;
}

/* Menüpunkte */
.submenu div {
    cursor: pointer;
    padding: 8px 0;
    font-size: 16px;
    border-bottom: 1px solid #ccc;
}

.submenu div:last-child {
    border-bottom: none;
}

.submenu div:hover {
    color: #0077cc;
}


    #output {
      margin: 50px;
      font-size: 1.2em;
      font-weight: bold;
      color:#333;
    }

    body {
      margin: 0;
      padding: 0;
      background-image: url("images/Hintergrund.jpg");
      background.size: cover;
      background-position: center;
      background-attachment: fixed;
      font-family: Arial, sans-serif;
        padding-top: 120px;
    }

    section {
      width: 90%;       
      margin: 50px auto;
      padding: 30px;
      background: rgba(255,255,255,0.85);
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      align-items: center;
      justify-content: center;
      font-size: 2em;
      color: black;
    }

/* Anfangs ausblenden */
.hidden {
    display: none !important;
}
  </style>
