/* Thêm CSS tùy ý tại đây */
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  color: #333;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.table {
  margin-top: 20px;
  table-layout: auto; /* Đặt chiều dài của table theo nội dung */
  width: 100%; /* Chiều rộng 100% để bảng mở rộng toàn bộ khung chứa */
}
.table th,
.table td {
  white-space: nowrap;
}

.table th:first-child,
.table td:first-child {
  width: 1%;
  white-space: nowrap;
  font-weight: bold; /* In đậm cho cột đầu tiên */
}

.table td:last-child {
  max-width: 400px; /* Đặt chiều rộng tối đa cho cột giá trị */
  overflow: hidden;
  text-overflow: ellipsis; /* Hiển thị dấu chấm (...) nếu nội dung quá dài */
  white-space: nowrap;
}
