#combinedList {
    display: flex;
    justify-content: space-between;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 8px;
}
@media only screen and (min-width: 600px) {
    /* Adjust styles for screens wider than 600 pixels (example: tablets and desktops) */
    #combinedList {
        flex-direction: row; /* Display lists side by side */
        justify-content: space-between;
    }
}