/* ระบบเบิกจ่ายสต๊อก - Custom styles (Separation of Concerns) */
* {
  font-family: 'Kanit', sans-serif;
}

.tab-active {
  border-bottom: 3px solid #2563eb;
  color: #2563eb;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide {
  animation: slideIn 0.3s ease-out;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.pulse-dot {
  animation: pulse-dot 2s infinite;
}

body {
  box-sizing: border-box;
}
