.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: flex-start; /* ⬅ move popup to top */
  padding-top: 80px; /* ⬅ distance from top */
  z-index: 20000;
  margin-top: 2em;
}

.modal {
  background: white;
  padding: 40px;
  width: 550px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

.closeBtn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 22px;
  cursor: pointer;
}

.title {
  color: #b81e4a;
  margin-bottom: 10px;
}

.desc {
  color: #333;
  margin-bottom: 25px;
}

.btn {
  background-color: #b81e4a;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}
