#cookieBanner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: white;
  color: #333;
  padding: 16px;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
}

#cookieText {
  margin-bottom: 10px;
  text-align: center;
}

#cookieButtons {
  display: flex;
  gap: 10px;
}

#cookieButtons button {
  padding: 8px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  background-color: #0078D4;
  color: white;
  border-radius: 4px;
}

#cookieButtons button:hover {
  background-color: #005A9E;
}

#fullPolicy {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 2px solid #333;
  padding: 2rem;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  z-index: 1000;
  display: none;
}