/* Overlay covers full screen and darkens background */
#cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7); /* dimmed background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* The popup box itself */
#cookie-box {
  background: black;
  color: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 10px #000;
}

/* Close button styling */
#cookie-close {
  margin-top: 20px;
  padding: 10px 20px;
  background: #ffffff;
  color: #000000;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

#cookie-close:hover {
  background: #dddddd;
}
