

/* สไตล์สำหรับตาราง */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #4c90af;
    color: white;
    font-weight: bold;
}

td {
    background-color: #f9f9f9;
}

td:hover {
    background-color: #f1f1f1;
}
