.cookie-popup {
  position: fixed;
  top: 0; /* Position at the top of the viewport */
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999; /* Highest priority */
}

.cookie-popup h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.cookie-popup p {
  margin-bottom: 20px;
}

.cookie-popup .buttons {
  display: flex;
  justify-content: space-between;
}

.cookie-popup button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.cookie-popup .accept {
  background-color: #4caf50;
  color: #ffffff;
}

.cookie-popup .more {
  background-color: #2196f3;
  color: #ffffff;
}

.cookie-popup .decline {
  background-color: #f44336;
  color: #ffffff;
}

.cookie-settings-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9999;
}

.cookie-setup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  z-index: 9999;
}

