header {
    margin-top: 30px;
}

header .logo {
    width: 100%;
}

.info-icon {
    position: absolute;
    right: 0;
    top: 1rem;
    color: var(--bs-secondary-color);
    cursor: pointer;
}

.info-icon:hover {
    color: var(--bs-body-color);
}

.container {
    max-width: 500px;
}

#search-trips {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

#search-trips > * {
    padding-bottom: 10px;
}

#search-trips .input-group-text {
    min-width: 4.5em;
}

#trips {
    padding: unset;
}

#trips * {
    text-decoration: none;
}

.trip-direction, .trip-time {
    font-size: 1.5em;
}

.trip-via {
    font-size: 0.8em;
}

.trip-track {
    background-image: url("/static/spoor.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    font-size: 1.2em;
    line-height: 2.6em;
    padding-top: .5em;
}

@media (prefers-color-scheme: dark) {
    .trip-track {
        background-image: url("/static/spoor-dark.svg");
    }
}

.trip-track span {
    width: 100%;
    text-align: center;
}

.trip-type {
    text-align: center;
}