.my-tn-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.my-tn-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 80vw;
  max-width: 768px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 4px;
}

.my-tn-close {
  /* position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px; */
}
