.my-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.my-modal-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  max-width: 90%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.my-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #0a84ff;
  color: #fff;
}
.my-modal-header .my-modal-title {
  margin: 0;
  font-size: 18px;
}
.my-modal-header .my-btn-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.my-modal-body {
  padding: 16px;
  font-size: 14px;
  color: #333;
}

.my-modal-footer {
  padding: 10px 16px;
  text-align: right;
}
.my-modal-footer .my-btn-close {
  padding: 6px 12px;
  background: #ccc;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.my-modal-footer .my-btn-close:hover {
  background: #999;
  color: #fff;
}

/*# sourceMappingURL=Popbox.css.map */
