.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  width: fit-content;/*  600px;*/
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background-color: burlywood;
  display: none;
}

.cookie-popup p {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.cookie-popup a {
  color: #0066cc;
  text-decoration: underline;
}

.cookie-btn {
  background: #0066cc;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: #0055aa;
}