#cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100dvw;
  background-color: rgba(0, 0, 0, 0.4); /* slightly transparent for dimming */
  z-index: 9998;
  display: none; /* default hidden */
  align-items: center;
  justify-content: center;
    padding-bottom: constant(safe-area-inset-bottom); /* legacy iOS */
  padding-bottom: env(safe-area-inset-bottom);
}

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  margin: auto;
  padding: 16px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-btn{
    padding: 8px 16px;
    border:none;
    border-radius:4px;
    cursor:pointer;
}

#cookie-accept{
    background:#000;
    color:#fff;
    margin-right:10px;
}

#cookie-reject{
    background:#ccc;
    color:#000;
}