body {
    font-family: sans-serif;
    padding: 2rem;
    background: #f9f9f9;
    color: #333;
}
.listing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px rgba(0,0,0,0.05);
}
.row.header {
    font-weight: bold;
    background: #eee;
    text-transform: uppercase;
}
.cell {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.cell.name {
    flex: 2;
}
a {
    text-decoration: none;
    color: #007acc;
}
a:hover {
    text-decoration: underline;
}
