
@font-face {
  font-family: 'SukhumvitSet';
  src: url('/static/fonts/SukhumvitSet-Text.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Global font application */
body, html {
  font-family: 'SukhumvitSet', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'SukhumvitSet', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

label, input, textarea, select, button {
  font-family: 'SukhumvitSet', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.toast {
  visibility: hidden;
  min-width: 140px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 10px 12px;
  position: fixed;
  z-index: 9999;
  right: 15px;
  top: 15px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.5s, top 0.5s;
  margin-left: 0;
  max-width: 220px;
  word-wrap: break-word;
  line-height: 1.3;
}
.toast.show {
  visibility: visible;
  opacity: 1;
  top: 35px;
}
.toast.success {
  background-color: #28a745;
}
.toast.error {
  background-color: #dc3545;
}
