#cookie-banner.cc-wrapper{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  padding: 20px;
  display: none;              /* default hidden */

  justify-content: center;    /* flex settings */
  align-items: center;
}

#cookie-banner.cc-wrapper.is-visible{
  display: flex;
}

.cc-card {
    background: white;
    color: #333;
    max-width: 900px;
    width: 100%;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}
.cc-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cc-text {
    flex: 1;
}

.cc-text h4 {
    margin: 0 0 8px 0;
    font-weight: 600;
}

.cc-buttons {
    display: flex;
    gap: 10px;
}

/* Fuer kleine Bildschirme unter 800px */
@media (max-width: 800px) {
    .cc-buttons {
        flex-direction: column; /* Buttons untereinander */
        gap: 10px;              /* Abstand zwischen Buttons */
        align-items: flex-start; /* Buttons linksbuendig, Text hat Platz */
    }

    .cc-buttons .btn {
        width: auto;           /* Buttons nehmen nur so viel Platz wie noetig */
        min-width: 120px;      /* optional: Mindestbreite fuer Lesbarkeit */
        padding: 8px 16px;     /* schoener Button-Padding */
    }
}

/* Mobile */
@media (max-width: 600px) {
    .cc-card {
        flex-direction: column;
        text-align: center;
    }

    .cc-buttons {
        align-items: center;
        width: 100%;
        justify-content: center;
    }
}
