/* นำเข้าฟอนต์ Prompt */
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Prompt", sans-serif;
  -webkit-font-smoothing: antialiased; /* ทำให้ตัวหนังสือคมชัดขึ้น */
}

/* อนิเมชันตอนเปิด Modal แบบนุ่มๆ */
.modal-enter {
  animation: popIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
