.modal-top {
  display: none;
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  z-index: 9999;

  justify-content: center;
  pointer-events: none;
}

.modal-top .modal-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 30px;
  max-width: 520px;
  width: 90%;
  text-align: center;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.15),
    0 2px 8px rgba(0,0,0,0.08);

  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: auto;
}

.modal-box.success p {
  color: #1e7e34;
}

.modal-box.error p {
  color: #991b1b;
}

.modal-top .modal-box p {
  margin: 0;
  font-size: 1.05rem;
  color: #1e7e34;
  font-weight: 600;
}

.modal-top .modal-box button {
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  background: #2e7d32;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}