
.tableWithGoals,
.tableWithRoutines{
    max-width: 500px;
	width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;    
    box-sizing: border-box;
    
    background-color: var(--lightGrey);
    box-shadow: var(--grey-boxShadow);
    border-radius: 15px;
    padding: 15px;
    
    font-size: 16px;

    display: flex;
    flex-direction: column;

    overflow: hidden;
    position: relative;
}
.tableWithGoals__goalRow,
.tableWithRoutines__routineRow{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    min-height: 45px;
    padding: 2px 10px 2px 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    box-sizing:border-box;
    border-radius: 16px;
    background-image: url('/assets/images/routinerow_BG.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: black;
    font-size: 12px;
    align-content: center;
    align-items: center;
    line-height: 12px;
    vertical-align: middle;
    box-shadow: var(--grey-boxShadow);
}

.tableWithRoutines__routineRow__selected{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    min-height: 45px;
    padding: 2px 10px 2px 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    box-sizing:border-box;
    border-radius: 16px;
    background-image: url('/assets/images/routinerow_checked_BG.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: black;
    font-size: 12px;
    align-content: center;
    align-items: center;
    line-height: 12px;
    vertical-align: middle;
    box-shadow: var(--grey-boxShadow);
}