.cookie-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #f1f1f1;
  z-index: 9999;
}

.cookie-popup p {
  margin: 0 0 20px 0;
}

.cookie-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.cookie-buttons button {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-right: 10px;
}

.cookie-buttons button:hover {
  background-color: #3e8e41;
}

@media only screen and (max-width: 600px) {
  .cookie-popup {
    width: 80%;
  }
}
