.table {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.table-header, .table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
}

.table-header .table-cell {
    font-weight: bold;
    background-color: #f9f9f9;
}