    /* Overlay hinter dem Banner */
    #cookie-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      display: none;              /* Wird per JS auf block gesetzt */
      z-index: 9998;
    }

    /* Das eigentliche Banner (Modal) */
    #cookie-banner {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 40vw;
      height: 40vh;
      max-width: 600px;
      max-height: 400px;
      min-width: 280px;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
      padding: 1.75rem 2rem;
      display: none;              /* Wird per JS auf flex gesetzt */
      flex-direction: column;
      justify-content: space-between;
      z-index: 9999;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    }

    #cookie-banner h2 {
      margin: 0 0 0.75rem;
      font-size: 1.3rem;
    }

    #cookie-banner p {
      margin: 0 0 1rem;
      font-size: 0.95rem;
      line-height: 1.4;
      color: #444;
    }

    #cookie-links {
      font-size: 0.85rem;
      margin-bottom: 1rem;
    }

    #cookie-links a {
      color: #0070f3;
      text-decoration: none;
    }

    #cookie-links a:hover {
      text-decoration: underline;
    }

    /* Button-Container: vertikal untereinander */
    #cookie-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    #cookie-buttons button {
      width: 100%;
      padding: 0.6rem 1rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.95rem;
      font-weight: 500;
      cursor: pointer;
      transition: transform 0.08s ease, box-shadow 0.08s ease,
        background-color 0.15s ease, color 0.15s ease;
    }

    #cookie-accept-all {
      background: #0070f3;
      color: white;
      box-shadow: 0 8px 20px rgba(0, 112, 243, 0.4);
    }

    #cookie-accept-all:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 26px rgba(0, 112, 243, 0.45);
    }

    #cookie-accept-necessary {
      background: #f5f5f5;
      color: #222;
      border-color: #ddd;
    }

    #cookie-accept-necessary:hover {
      background: #e9e9e9;
      transform: translateY(-1px);
    }

    #cookie-reject-all {
      background: transparent;
      color: #666;
      border-color: #ddd;
    }

    #cookie-reject-all:hover {
      background: #fafafa;
      transform: translateY(-1px);
    }

    /* Responsiv: auf sehr kleinen Screens fast volle Breite/Höhe */
    @media (max-width: 600px) {
      #cookie-banner {
        width: 90vw;
        height: auto;
        max-height: 80vh;
        padding: 1.25rem 1.5rem;
      }
    }