/*
ride-sight/assets/style.js

ride-sight is licensed under a
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

You should have received a copy of the license along with this
work. If not, see <https://creativecommons.org/licenses/by-nc-sa/4.0/>.
*/

body {
    font-family: 'Courier New', Courier, monospace;
}

.small-foot {
    font-size: 8;
    color: gray;
}

.bus-schedule {
    border-collapse: collapse;
}

.table-head {
    background: gray;
}

tr {
    border: 1px solid darkgray;
}

th {
    padding-top: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

td {
    padding: 3px;
}

.odd-row {
    background: rgb(210, 210, 210);
}
.even-row {
    background: rgb(180, 180, 180);
}

.dt-col {
    text-align: center;
    border-left: 2px solid darkgray;
    border-right: 1px solid darkgray;
}
.pred-col {
    text-align: center;
    border-left: 2px solid darkgray;
    border-right: 1px solid darkgray;
}
.sched-col {
    text-align: center;
    border-left: 1px solid darkgray;
    border-right: 1px solid darkgray;
}
.bus-num-col {
    text-align: center;
    border-left: 1px solid darkgray;
    border-right: 2px solid darkgray;
}
.current-stop-col {
    text-align: center;
    border-left: 1px solid darkgray;
    border-right: 2px solid darkgray;
}