/* นำเข้า Google Font */
@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@300;400;500;600;700&display=swap');

/* กำหนด font หลักให้กับทุกองค์ประกอบในเว็บ */
* {
    font-family: 'Sarabun', sans-serif;
}

/* สไตล์เพิ่มเติมสำหรับทั้งระบบ */
body {
    background-color: #f5f5f5;
}

.card {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e3e6f0;
}

.btn {
    border-radius: 5px;
}

/* สไตล์สำหรับหัวข้อ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* สไตล์สำหรับตาราง */
.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}