/*
#consent-overlay {
    display: none;    
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);    
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#consent-box {
    background: white;
    padding: 2rem;
    margin: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#consent-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

#consent-button {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
}

body.overlay-active {
    overflow: hidden;
}
*/

#consent-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  
  #consent-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  
    /* Slide-in Animation */
    transform: translateY(-100px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
  }
  
  #consent-box.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  #consent-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  #consent-button {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
  }
  
  body.overlay-active {
    overflow: hidden;
  }
  
  
  


.btn-black {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    border-radius: 0.5rem;
    /* oder z. B. 50px für Pillenform */
}

.btn-black:hover,
.btn-black:focus {
    background-color: #222;
    border-color: #222;
}

.btn-blue {
    background-color: #000099;
    color: #fff;
    border: 1px solid #000099;
    border-radius: 0.5rem;
}

.btn-blue:hover,
.btn-blue:focus {
    background-color: #0056b3;
    border-color: #0056b3;
}


@media (min-width: 992px) {
    /* CSS-Regeln für große Bildschirme (ab 992px) */
    #consent-box {                
        width: 50%;
    }
}

