#fz-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f1f1f1;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
}

.fz-box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 15px;
}

.fz-text p {
  margin: 5px 0;
  line-height: 1.5;
}

.fz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.fz-options label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.fz-options select {
  margin-left: 8px;
  padding: 3px 6px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.fz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.fz-actions button {
  padding: 8px 16px;
  background-color: #2b709b;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  white-space: nowrap;
}

.fz-actions button:hover {
  background-color: #215a7a;
}

.fz-powered {
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  padding-top: 10px;
}

.fz-powered a {
  color: #888;
  text-decoration: none;
}

.fz-powered a:hover {
  text-decoration: underline;
}

/* ---------- Cookie-Info-Popup ---------- */
#fz-cookie-info-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}

.fz-popup-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
}

.fz-popup-content {
  position: relative;
  background: white;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  overflow-y: auto;
  max-height: 90vh;
}

.fz-popup-content h2 {
  margin-top: 0;
}

.fz-popup-content button {
  margin-top: 20px;
  background-color: #2b709b;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
}

/* ---------- Responsive Anpassungen ---------- */
@media (max-width: 768px) {
  .fz-options {
    flex-direction: column;
    align-items: flex-start;
  }

  .fz-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fz-actions button {
    width: 100%;
  }

  .fz-popup-content {
    padding: 20px;
    width: 95%;
  }

  .fz-options label {
    width: 100%;
  }

  .fz-options select {
    margin-left: 0;
    margin-top: 4px;
  }
}
