#cookieBannerOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Modal window */
#cookieBanner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  max-width: 500px;
  text-align: center;
  width: 50%; /* default width */
}

@media only screen and (max-width: 767px) {
  #cookieBanner {
    width: 80%; /* adjust width for screens smaller than 768px */
    margin: auto; /* center horizontally on mobile */
  }
}


#cookieBanner p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
}

#cookieBanner a {
  color: #5F71AD;
  text-decoration: none;
}

#cookieBanner a:hover {
  text-decoration: underline;
}

#cookieBannerConfirm {
  background-color: #5F71AD;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  margin-top: 20px;
  cursor: pointer;
}

#cookieBannerConfirm:hover {
  background-color: #4B5C91;
}
