table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden; /* bo góc table */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Header */
table thead {
    background: #f9fafb;
}

table thead th {
    padding: 12px 15px;
    font-weight: 600;
    text-align: left;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    text-transform: uppercase;
    font-size: 12px;
}

/* Body */
table tbody tr:nth-child(even) {
    background: #f5f6f7;   /* zebra */
}

table tbody tr:hover {
    background: #e5ecf5;   /* hover đẹp */
    transition: .2s;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

/* Tự động căn chỉnh */
table td, table th {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Khi text dài quá tự xuống dòng nếu muốn */
table.wrap td {
    white-space: normal;
}

/* Responsive cuộn ngang */
.table-responsive {
    overflow-x: auto;
    border-radius: 8px;
}