#cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#cookie-dialog {
  background-color: #fff;
  padding: 20px;
  max-width: 400px;
  text-align: center;
}

#cookie-dialog h2 {
  margin-top: 0;
}

#cookie-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#cookie-accept, #cookie-reject {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-right: 10px;
  cursor: pointer;
}