.rwh-choice {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.choice-box {
  flex: 1;
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
}

.choice-box:hover {
  border-color: black;
}

.rwh-btn {
  padding: 10px 15px;
  border: none;
  background: black;
  color: white;
  border-radius: 8px;
}

.rwh-download {
  padding: 12px;
  width: 100%;
  margin-top: 20px;
  background: darkred;
  color: white;
  border-radius: 10px;
}

.rwh-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  background: white;
  padding: 20px;
  width: 400px;
  margin: 100px auto;
  border-radius: 12px;
}
