#privacyOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d3d3d357;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 20px;
}

#privacyBox {
  background: #fff;
  max-width: 800px;
  width: 100%;
  padding: 30px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #000;
}

#privacyBox h3 {
  margin-top: 15px;
  margin-bottom: 10px;
}

.introText {
  font-style: italic;
  margin-bottom: 15px;
}

.consentWrap {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consentWrap input {
  margin-top: 5px;
}

.btnWrap {
  margin-top: 20px;
  text-align: right;
}

#agreeBtn {
  background-color: #28a745;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#agreeBtn:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

#disagreeBtn {
  background-color: #dc3545;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  margin-left: 10px;
  cursor: pointer;
}

.privacyResponseBox {
  text-align: center;
  padding: 40px;
  background: #fff;
}

.privacyResponseBox h2 {
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: #000;
}

#proceedBtn {
  margin-top: 10px;
  padding: 10px 18px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  transition: 0.2s ease;
}

#proceedBtn:hover {
  background-color: #0056b3;
}

#submitBtn:disabled {
  background-color: #aaa !important;
  cursor: not-allowed;
  opacity: 0.7;
}