#cookiePopup {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9000;
  pointer-events: none;
}

#cookieTextBx {
  width: 80%;
  position: fixed;  
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  max-height: 100%;
  overflow-y: auto;
  background: #5a5959; 
  padding: 10px; 
  border: solid 2px #333;
  pointer-events: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
}

.cookie-h{
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 5px;
}

#consentText {
  padding: 15px; 
}

#cookieBtnBx {
  text-align: center;
  margin-top: 5px; 
}

#cookieInfosLink {
  color: #1394fe; 
  text-decoration: underline; 
  cursor: pointer; 
}

#cookieAcceptBtn {
  background-color: #2b2a2a;
  border-radius: 5px; 
  padding: 10px 20px; 
  font-size: 16px; 
  font-weight: bold;
  border: solid 2px #242323; 
  color: #fff;
  cursor: pointer; 
  width: 200px; 
  transition: background-color 0.3s; 
}

#cookieAcceptBtn:hover {
  background-color: #000; 
}
