body {
  margin: 0;
  font-family: Arial, sans-serif;
}

#welcomeOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#welcomeModal {
  background: #ffffff;
  padding: 24px;
  width: 320px;
  max-width: 90%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
}

#welcomeModal p {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.4;
}

.modalButtons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

#agreeBtn,
#declineBtn {
  padding: 10px 24px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

#agreeBtn {
  background: #811617;
  color: #ffffff;
}

#declineBtn {
  background: #e0e0e0;
  color: #222222;
}

#agreeBtn:hover,
#declineBtn:hover {
  opacity: 0.9;
}