
#content {
    padding: 1rem;
}

.overviewTableWrap {
    width: 100%;
    overflow-x: auto;
}

.overviewTable td, .overviewTable th {
    padding: 0.25rem .5rem;
    border: 1px solid lightgray;
    text-align: center;
}

.overviewTable td {
    white-space: nowrap;
}

.overviewTable td:first-child {
    text-align: left;
    font-weight: bold;
}

.overviewTable tr:nth-child(1) th:nth-child(2),
.overviewTable tr:nth-child(1) th:nth-child(3),
.overviewTable td:nth-child(3), .overviewTable tr:nth-child(2) th:nth-child(2),
.overviewTable td:nth-child(5), .overviewTable tr:nth-child(2) th:nth-child(4) {
    border-right: 3px solid lightgray;
}

.overviewTable thead tr:nth-child(2) {
    border-bottom: 3px solid lightgray;
}

.trLight {
    width: 1rem;
    height: 1rem;
    border-radius: .5rem;
    background: white;
    border: 1px solid #e7e7e7;
    margin: 0 auto;
}

.trLight.red {
    background: #9d0000;
}

.trLight.green {
    background: #1b731b;
}

.rideForm {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.rideForm .inputWrap {
    margin: .5rem;
}

.rideForm .btn {
    padding: 1rem;
    background: lightgray;
    border: none;
    width: 100%;
    font-weight: bold;
}

.rideForm .btn img {
    vertical-align: bottom;
    margin-right: 1rem;
}

.flash {
    padding: 1rem;
    background: #c9c900;
    border-radius: .25rem;
}

.flash.success {
    background: #28af28;
}

@media all and (min-width: 40rem) {
    .rideForm {
        flex-direction: row;
    }

    .rideForm .inputWrap {
    }
}