/* ตัวอย่างสไตล์ที่ใช้ร่วมกัน */
body {
    font-family: Arial, sans-serif;
    background-color: #d9d9d9;
}

h1 {
    color: #343a40;
}

nav a {
    margin-right: 10px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body {
    padding: 20px;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #ddd;
}

.list-group-item:last-child {
    border-bottom: none;
}

.custom-title {
    color: #009a9a; /* เปลี่ยนสีฟอนต์ */
}

.icon-custom {
    color: #009a9a; /* เปลี่ยนสีไอคอนที่ต้องการ */
}