/* SideBar */

.sideBar{
    border: 1px solid var(--color_b2);
    min-width: 15%;
    margin: 80px 20px;
    border-radius: 5px;
    background-color: var(--color_b2);
}

@media (min-width: 600px) {
    .sideBar { 
        position: absolute;
        top: 50px;
    }
}


.sideBar-box p::before{
    display: block;
    float: left;
    content: "";
    height: 50px;
    margin: 5px;
    width: 10px;
    border-radius: 10px;
    background-color: var(--color_neon_b1);
}

/*table-laps*/

.table-laps{
    border-collapse: collapse;
    width: 100%;
}

.table-laps thead th{
    padding: 10px;
    font-size: 18px;
    background-color: var(--color_b1);
}

.table-laps thead th:first-child{
    border-radius: 5px 0 0 0;
}

.table-laps thead th:last-child{
    border-radius: 0 5px 0 0;
}

.table-laps tbody tr:last-child td:first-child{
    border-radius:  0 0 0 5px;
}

.table-laps tbody tr:last-child td:last-child{
    border-radius:  0 0 5px 0;
}

.table-laps tbody tr td{
    padding: 10px;
    font-size: 18px;
    text-align: end;
}

.table-laps tbody tr:nth-child(odd){
    background-color: var(--color_b3);
}