@font-face {
    font-family: 'Frutiger';
    src: url('frutiger.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Frutiger';
    src: url('frutiger_bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000000;
    font-family: 'Frutiger', 'Segoe UI', sans-serif;
    height: 100vh;
    overflow: hidden;
}

#display-frame {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

#header {
    background-color: #2d2d5d;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    font-size: 42px;
    font-weight: bold;
    flex-shrink: 0;
}

#exact-time {
    font-size: 40px;
}

#column-headers, .row {
    display: grid;
    grid-template-columns: 220px 1fr 120px;
    gap: 20px;
    padding: 0 30px;
    align-items: center;
}

#column-headers {
    background-color: #454e99;
    height: 55px;
    font-size: 20px;
    line-height: 1.2;
    flex-shrink: 0;
}

#column-headers i {
    font-size: 17px;
    opacity: 0.75;
    font-weight: normal;
}

#column-headers .col-line {
    display: block; text-align: left;
}

#column-headers .col-time {
    display: block; text-align: right;
}

#departures {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #000000;
}

.row {
    flex-grow: 1;
    font-size: 46px;
    font-weight: bold;
}

.row:nth-child(odd)  {
    background-color: #2d2d5d;
}

.row:nth-child(even) {
    background-color: #454e99;
}

.row .col-line {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
}

.row .col-dest {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 20px;
}

.row .col-time {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}

.vehicle-icon {
    height: 65px; 
    width: 65px;  
    object-fit: contain;
}

.icon-placeholder {
    visibility: hidden;
    display: inline-block;
    width: 65px; 
}

.route-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 65px; 
    width: 120px; 
    border-radius: 6px;
    text-align: center;
}

.route-circle {
    width: 65px;
    border-radius: 50%;
}

.time-data img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

.center-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: #000000;
}
        
.center-logo {
    max-width: 50vw;
    max-height: 50vh;
    object-fit: contain;
}

.dest-arrow {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 0.75em;
    margin: 0 10px;
}