#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  z-index: 9999;
  max-width: 400px;
  text-align: center;
  font-family: Arial, sans-serif;
}

#cookie-popup p {
  margin: 10px 0;
}

#cookie-popup button {
  padding: 10px 15px;
  border: none;
  margin-top: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

#cookie-popup .ok-btn {
  background: #00A884;
  color: white;
  margin-left: 10px;
}

#cookie-popup .policy-btn {
  background: transparent;
  color: black;
  text-decoration: underline;
}
