/* Cookie Banner */
#cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  text-align: center;
  font-family: Rajdhani, sans-serif;
  box-sizing: border-box;
}

#cookie-banner p {
  margin: 0;
  line-height: 1.5;
  font-size: 18px;
  font-family: Rajdhani, sans-serif;
}

/* "Ich hab's kapiert!" Button */
#cookie-banner button {
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #fec600;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-family: Rajdhani, sans-serif;
  transition: background-color 0.3s ease;
}

#cookie-banner button:hover {
  background-color: #218838;
}

/* Dezent gestylter Reset-Button */
#reset-btn {
  display: none; /* Initial unsichtbar – wird per JS ein-/ausgeblendet */
  margin-top: 15px;
  padding: 8px 16px;
  background-color: transparent;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-family: Rajdhani, sans-serif;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#reset-btn:hover {
  background-color: #f0f0f0;
  color: #000;
}

/* Responsive Anpassung */
@media (max-width: 600px) {
  #cookie-banner p {
    font-size: 16px;
  }

  #cookie-banner button {
    padding: 10px 20px;
    font-size: 18px;
  }

  #reset-btn {
    font-size: 16px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  #cookie-banner {
    width: 95%;
    max-width: 350px;
  }

  #cookie-banner p {
    font-size: 18px;
  }

  #cookie-banner button {
    padding: 12px 24px;
    font-size: 18px;
  }

  #reset-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
}
