/* Vollbild Overlay */
.cookie-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Standardmäßig versteckt */
.d-none{
  display: none !important;
}

/* Inhalt des Modals */
.cookie-modal-content {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  font-family: sans-serif;
}

/* Titel */
.cookie-modal-title {
  margin-top: 0;
  font-size: 24px;
  text-align: center;
}

/* Beschreibung */
.cookie-modal-text {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: center;
}

/* Optionen */
.cookie-option {
  margin-bottom: 15px;
}

.cookie-option label {
  font-size: 14px;
  line-height: 1.4;
  display: block;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
}

/* Buttons */
.cookie-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.cookie-modal-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#save-cookie-preferences {
  background-color: #4caf50;
  color: white;
}

#cancel-cookie-preferences {
  background-color: #f44336;
  color: white;
}
