.table-options{
    display: flex;
    /*flex-direction: row;*/
    align-items: center;
    justify-content: space-between;
    /*column-gap: 1rem;*/
    margin: 2rem 0;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #333333;
}
.table-options li{
    color: #333333;
    font-size: 20px;
    font-family: Arial, sans-serif;
    padding: 5px;
}
.selected-option{
    width: 100%;
}
.selected-option li{
    color: #333333;
    font-size: 22px;
    font-family: Arial, sans-serif;
    margin: 0 0 2rem 0;
}
.option:hover{
    cursor: pointer;
}

@media(min-width: 768px){
    .table-options{
        flex-direction: row;
        justify-content: left;
        column-gap: 1rem;
    }
}

@media(min-width: 1024px){
    .table-options li{
        font-size: 18px;
    }
    .table-options{
        margin: 4rem 0 2rem 0;
        padding: 0 0 .5rem 0;
        border-bottom: .2px solid #ccc;
    }
    .selected-option li{
        font-size: 22px;
        margin: 0 0 2rem 0;
    }
}

