/* Cookie-Consent-Banner - aus der Live-Seite übernommen.
 * GENERIERT von tools/extract-consent.py - nicht von Hand bearbeiten.
 * Auf der Live-Seite steht dieses CSS in einem <style>-Block im <head>.
 */
.cc-overlay{
    position:fixed; inset:0; display:none;
    background:rgba(0,0,0,.55);
    z-index:99999;
    align-items:flex-end; justify-content:center;
    padding:16px;
  }
  .cc-overlay.cc-show{ display:flex; }
  .cc-modal{
    color: white;
    background:#000;
    opacity: 0.8;
    border-radius:16px;
    padding:18px;
    box-shadow:0 10px 40px rgba(0,0,0,.25);
    font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }
  .cc-title{ margin:0 0 8px; font-size:20px; }
  .cc-text{ margin:0 0 14px; line-height:1.4; font-size:14px; }

  .cc-actions{
    display:flex; gap:10px; flex-wrap:wrap;
    margin-top:10px;
  }
  .cc-btn{
    border:1px solid #d0d0d0;
    background:#000;
    padding:10px 12px;
    border-radius:12px;
    cursor:pointer;
    font-size:14px;
    color: white;
  }
  .cc-btn:hover{ filter:brightness(.98); }
  .cc-primary{
    background:#fff; color:#000; border-color:#111;
  }
  .cc-ghost{
    background:transparent;
    color:white;
  }

  .cc-manage{ margin-top:14px; }
  .cc-row{
    display:flex; justify-content:space-between; gap:12px;
    padding:12px 10px;
    border:1px solid #eee;
    border-radius:12px;
    margin-bottom:10px;
    align-items:center;
  }
  .cc-cat-title{ font-weight:600; margin-bottom:3px; }
  .cc-cat-desc{ font-size:13px; color:#4a8185; }

  .cc-disabled{
    font-size:12px; color:#666;
    padding:8px 10px; border-radius:999px;
    background:#f3f3f3; border:1px solid #e6e6e6;
    white-space:nowrap;
  }

  .cc-switch{ position:relative; display:inline-block; width:52px; height:30px; }
  .cc-switch input{ display:none; }
  .cc-slider{
    position:absolute; cursor:pointer; inset:0;
    background:#ddd; border-radius:999px;
    transition:.2s;
  }
  .cc-slider:before{
    content:""; position:absolute; height:24px; width:24px;
    left:3px; top:3px; background:white;
    border-radius:50%;
    transition:.2s;
    box-shadow:0 1px 4px rgba(0,0,0,.25);
  }
  .cc-switch input:checked + .cc-slider{ background:#2db985; }
  .cc-switch input:checked + .cc-slider:before{ transform:translateX(22px); }

  .cc-actions-manage{ margin-top:12px; }
  .cc-small{ margin:12px 0 0; font-size:12px; color:#666; }
  .cc-link{ color:#111; text-decoration:underline; }
  
  .cc-close{
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
    float: right;
  }

  .cc-close:hover{
    background: #f2f2f2;
    color: #111;
  }

  .cc-close:focus{
    outline: none;
  }

  .cc-close:focus-visible{
    outline: 3px solid rgba(0,0,0,.35);
    outline-offset: 2px;
  }

  .neon-button {
  padding: 15px 30px;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  background-color: #bd081c;
  border-radius: 5px;
  border: none;
  position: relative;
  overflow: hidden;
  
  /* Always glowing animation */
  animation: neonGlow 2s infinite alternate;
}


/* Keyframes for continuous glow */
@keyframes neonGlow {
  from {
    box-shadow: 0 0 5px #bd081c,
                0 0 10px #bd081c,
                0 0 15px #bd081c;
  }
  to {
    box-shadow: 0 0 15px #bd081c,
                0 0 30px #bd081c,
                0 0 45px #bd081c;
  }
}

.cc-fab{
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 100000; /* above most stuff */
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  }

  .cc-fab:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
    filter: brightness(.98);
  }

  .cc-fab:active{
    transform: translateY(0);
  }

  .cc-fab:focus{
    outline: none;
  }

  .cc-fab:focus-visible{
    outline: 3px solid rgba(0,0,0,.35);
    outline-offset: 3px;
  }

  .cc-fab-icon{
    width: 26px;
    height: 26px;
    fill: #111;
  }

  /* Optional: On very small screens make it a bit smaller */
  @media (max-width: 480px){
    .cc-fab{ width: 46px; height: 46px; right: 14px; bottom: 14px; }
    .cc-fab-icon{ width: 24px; height: 24px; }
  }
