/* siamwebsite-style-2025.css */
/* File to fix and improve website styles */

/* == Fix for Unordered List (UL) and List Items (LI) == */
/* This rule targets the lists within the main content box (.impl_fea_car_box) */

.impl_fea_car_box ul {
    list-style-type: disc !important; /* แสดงสัญลักษณ์ bullet (วงกลมทึบ) */
    padding-left: 40px !important;    /* เพิ่มระยะห่างด้านซ้ายสำหรับ bullet */
    margin-top: 15px;                 /* เพิ่มระยะห่างด้านบนของ list */
    margin-bottom: 15px;              /* เพิ่มระยะห่างด้านล่างของ list */
}

.impl_fea_car_box li {
    display: list-item !important;      /* กำหนดให้แสดงผลเป็น list item มาตรฐาน */
    padding-bottom: 10px;               /* เพิ่มระยะห่างระหว่างแต่ละข้อ */
}

/* ทำให้ตัวหนาใน list item ดูเด่นขึ้น */
.impl_fea_car_box li strong {
    color: #333; /* สามารถปรับสีได้ตามต้องการ */
}