/* #############################################
   ##   EK4Y Klaro Cookie Banner Style (Update)
############################################# */
#klaro {
    font-family: "Figtree", "Inter", sans-serif;
    z-index: 999999 !important;
  }
  
  /* Halbtransparenter Blur-Hintergrund */
  .klaro .cm-overlay {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.3) !important;
  }
  
  /* Modal allgemein */
  .klaro .cookie-modal,
  .klaro .cm-modal,
  .klaro .cookie-notice {
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: #fff;
    color: #222;
    overflow: hidden;
    border: 2px solid rgba(23, 214, 143, 0.6);
  }
  
  /* Header */
  .klaro .cm-header {
    background: #17d68f;
    color: #fff;
    padding: 1.25rem 1.75rem;
  }
  
  /* Body */
  .klaro .cm-body {
    padding: 1.75rem;
  }
  
  /* Listen */
  .klaro .cm-list label {
    font-weight: 600;
    color: #111;
  }
  
  .klaro .cm-purpose .cm-purpose-description {
    color: #444;
    font-size: 0.95rem;
  }
  
  /* Buttons */
  .klaro .cm-buttons,
  .klaro .cookie-notice-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 1.25rem 1.75rem;
  }
  
  .klaro .cm-btn,
  .klaro .cm-btn.cm-btn-success {
    background: #17d68f;
    color: #fff;
    border: none;
    border-radius: 0.6rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
  .klaro .cm-btn:hover {
    background: #13b779;
  }
  
  .klaro .cm-btn.cm-btn-decline {
    background: #ddd;
    color: #333;
  }
  
  .klaro .cm-btn.cm-btn-decline:hover {
    background: #ccc;
  }
  
  /* Hinweis unten */
  .klaro .cookie-notice {
    bottom: 1.5rem;
    left: 1.5rem !important;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.25rem 1.75rem;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(23, 214, 143, 0.4);
  }

  /* Mobile: volle Breite unten fixiert */
  @media (max-width: 768px) {
    .klaro .cookie-notice {
      left: 0 !important;
      right: 0 !important;
      bottom: 0;
      width: 100%;
      max-width: none;
      border-radius: 0;
      border-left: none;
      border-right: none;
      padding: 1rem 1.25rem;
    }
  }
  
  .klaro .cookie-notice h1,
  .klaro .cookie-modal h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
  }
  
  .klaro .cookie-notice .cm-link {
    color: #17d68f;
    font-weight: 500;
    text-decoration: underline;
  }
  
  /* "Realisiert mit Klaro" ausblenden */
  .klaro .cm-powered-by {
    display: none !important;
  }
  