#lw-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lw-box {
  background: #1e1e1e;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  font-family: sans-serif;
}

#lw-box button {
  margin: 10px;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#lw-continue {
  background: #4caf50;
  color: white;
}

#lw-cancel {
  background: #f44336;
  color: white;
}