/* ฟอนต์หลักทั้งเว็บ */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@300;400;500;600;700&display=swap');
body {
  font-family: "Bai Jamjuree", sans-serif;
}

/* ปุ่มหลัก */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.2s;
  color: white;
  background: #24e16a;
  justify-content: center
}
.btn-primary:hover {
  background: #15803d;
}

.btn-primary-danger {
  background: #dc2626;
}
.btn-primary-danger:hover {
  background: #b91c1c;
}

/* การ์ดสรุปยอด */
.card {
  padding: 1rem;
  background: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* ตารางข้อมูล */
.table-default thead {
  background: #f9fafb;
  color: #4b5563;
}
.table-default tbody tr:hover {
  background: #f9fafb;
}

/* badge สถานะ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  border-radius: 9999px;
  font-size: 0.75rem;
}
.badge-green { background: #d1fae5; color: #059669; }
.badge-yellow { background: #fef9c3; color: #b45309; }
.badge-blue { background: #dbeafe; color: #1d4ed8; }