body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.box {
    text-align: center;
}

h2 {
    margin-bottom: 12px;
    font-size: 22px;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
}

table {
    border-collapse: collapse;
    width: 480px;
    margin: 0 auto;
}

th {
    background-color: #f0f8ff;
    border: 1px solid #a2e8a2;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
}

td {
    border: 1px solid #ff9933;
    padding: 6px 12px;
    font-size: 14px;
    text-align: left;
}

/* Kiểu màu cho các dòng lẻ khi kích hoạt nút đổi màu */
tr.highlight {
    background-color: #ff0066;
}

.button-group {
    margin-top: 8px;
    text-align: left;
    width: 480px;
    margin-left: auto;
    margin-right: auto;
}

button {
    padding: 3px 8px;
    font-size: 13px;
    cursor: pointer;
    background-color: #efefef;
    border: 1px solid #767676;
    border-radius: 2px;
}

button:hover {
    background-color: #e2e2e2;
}