.responsive-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
}

.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #ccc; /* Optional, for visual separation */
}

.cell {
    flex: 1;
    text-align: left;
    padding: 10px;
}

.highlight-1 {
    background-color: aqua;
     text-align: left;

}