/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Anuphan:wght@300;500;700&display=swap');

body {
    font-family: "Anuphan", sans-serif;
    background-color: #f3f4f6;
}

.card-dashboard {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.card-dashboard:hover {
    transform: translateY(-3px);
}

table.dataTable thead th {
    vertical-align: middle;
    text-align: center;
}

/* --- เพิ่มต่อท้ายไฟล์ css/style.css --- */

/* จัดกึ่งกลางหัวตารางและเนื้อหา */
table.dataTable thead th, 
table.dataTable tbody td {
    text-align: center !important;
    vertical-align: middle !important;
}

/* ถ้าอยากให้คอลัมน์ "หมายเหตุ" ชิดซ้ายเหมือนเดิม (เพราะข้อความอาจจะยาว) ให้เติมอันนี้ */
table.dataTable tbody td:nth-child(6) {
    text-align: center !important;
}