/* Base font family for all elements matching skmop.cz */
* {
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-style: normal;
}

tr.header {
    color: beige;
    background-color: gray;
    font-weight: bold;
    font-size: 0.875em;
}
tr.header td {
    font-weight: bold;
}
tr.even {background-color: lightgray}
tr.pool_length *{
    width: 0.625em;
}
table{
    width: 100%;
    table-layout: auto;
}
td {
    padding: 0.4em;
    height: 0.9375em;
    font-size: 0.875em;
}
td.discipline {
    color: beige;
    background-color: gray;
    font-weight: bold;
    width: 6em;
    min-width: 6em;
    max-width: 6em;
    white-space: nowrap;
    position: sticky;
    left: 0;
    z-index: 1;
}
td.time {
    white-space: nowrap;
}
td.swimmer {
    white-space: nowrap;
}
button, select{
    border: black 1em;
    background-color: white;
    transition: background-color linear 200ms;
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-size: 0.875em;
}
button:hover{
    background-color: deepskyblue;
    transition: background-color linear 200ms;
}
select:hover{
    background-color: deepskyblue;
    transition: background-color linear 200ms;
}
#table{
    display: flex;
}
#age_group_title {
    margin-top: 3em;
    margin-bottom: 1.25em;
    display: flex;
    justify-content: center;
}
#age_group_title h2 {
    font-size: 0.875em;
    font-weight: bold;
    margin: 0;
    padding: 0.625em 0.9375em;
    background-color: white;
    display: inline-block;
    line-height: 1;
}
#update_date{
    margin-left: 80%;
}
@media (min-width: 1200px) {
    #table {
        width: 85%;
        margin: 0 auto 0 auto;
    }
}
@media print {
    #NavBar{
        display: none;
    }
    form{
        display: none;
    }
    table{
        border: solid black 1px;
    }
    #table{
        margin: 50px;
    }
    td.discipline{
        color: black;
        font-weight: bold;
    }
    tr.header * {
        color: black;
        font-weight: bold;
    }
    a {
        color: black;
        font-weight: bold;
        text-decoration: none;
    }
    #update_date{
        display: none;
    }
}
