/* stopwatch */

.stopwatch
{
    flex-direction: row;
    column-gap: 1rem;
    font-size: 2rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: .125rem solid var(--primary);
}

.stopwatch > div
{
    width: 100%;
    box-sizing: border-box;
}

.stopwatch > button
{
    border: .125rem solid var(--secondary);
    background-color: var(--primary);
    border-radius: 10px;
    font-size: 1.3rem;
    padding: .4rem;
    width: 6.25rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: filter .1s ease-in-out;
    color: inherit;
}

.stopwatch > button:hover
{
    filter: brightness(1.7);
}

/* measurements list */

.list
{
    border: .125rem solid var(--primary);
    overflow-y: scroll;
    border-radius: 0;
}

.list::-webkit-scrollbar
{
    background-color: var(--primary);
}

.list::-webkit-scrollbar-thumb
{
    background-color: var(--primary);
    border: .1rem solid var(--secondary);
}

.list table
{
    font-size: inherit;
    border-spacing: .3rem;
}

.list table > thead > tr:first-child > td
{
    border-bottom: .1rem solid var(--text);
    text-align: center;
    padding-bottom: .3rem;
}

.list table td
{
    padding: 0 1rem;
}