.table_container{
    flex:1 0 auto;
    align-self: center;
    align-content: center;
}
.row_container{
    display:flex;
    flex-wrap:nowrap;
    flex-direction: row;
    gap:10px;
    margin: 2px;
}
.row_child:nth-child(1)
{
    background-color: lightgrey;
    color:#333;
    flex:1 0 35%;
    font-family: serif;
    font-size: medium;
    font-weight: bolder;
    white-space: nowrap;

}
.row_child:nth-child(2)
{
    flex:1 0 30%;
    text-align:right;
    font-family: Courier, sans-serif;
    font-size: medium;
}
.row_child:nth-child(3)
{
    flex:1 0 25%;
    font-family: serif;
    font-size: medium;
    white-space: nowrap;

}
.row_child:nth-child(4)
{
    flex:1 0 5%;
    align-content:center;
    justify-self:end;
}


.ephem_child:nth-child(1)
{
    background-color: lightgrey;
    color:#333;
    flex:1 0 50%;
    font-family: serif;
    font-size: medium;
    font-weight: bolder;
    white-space: nowrap;
    min-height: 25px;
    align-content:center;
}
.ephem_child:nth-child(2)
{
    align-content:center;
    flex:1 0 50%;
    text-align:right;
    font-family: Courier, sans-serif;
    font-size: medium;
    white-space: nowrap;

}
.ephem_child:nth-child(3)
{
    flex:1 0 0%;
    font-family: serif;
    font-size: medium;
    white-space: nowrap;

}




div.good
{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: lightseagreen;
}
div.bad
{
    width: 10px;
    height: 10px;

    border-radius: 50%;
    background-color: indianred;
}
