/* --- ทดสอบการทำงานของ Custom CSS --- */

/* 1. ลองเปลี่ยนสีพื้นหลังของทั้งหน้าเว็บเป็นสีเทาอ่อน */
body {
    background-color: #f0f0f0 !important;
}

/* 2. ลองเปลี่ยนสีหัวข้อ H1 ให้เป็นสีแดงเข้ม */
h1 {
    color: #ff0000 !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
}

/* 3. ลองใส่เส้นขอบสีเขียวหนาๆ ให้กับส่วน Header */
.HeadBg {
    border-bottom: 5px solid #28a745 !important;
}
