body {
    background-color: #f6f7f9;
}

.navbar-brand {
    font-weight: 700;
}

/* Карта редактора маршрута */
.trip-map {
    height: 70vh;
    min-height: 420px;
    border-radius: .5rem;
    z-index: 0;
}

.map-marker-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

.map-marker-pin > span {
    transform: rotate(45deg);
    font-size: 14px;
    line-height: 1;
}

.map-marker-pin.is-excluded {
    opacity: .45;
}

.waypoint-type-badge {
    font-size: .75rem;
}

/* Маркеры АЗС из справочника: бензоколонка в цветном кольце (цвет = наличие 95-х) */
.fuel-station-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #9ca3af;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}

/* Позиции участников на карте */
.rider-location {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0d6efd;
    border: 2px solid #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .45);
    font-size: 15px;
}

.rider-location.is-me {
    background: #198754;
}

.rider-location-label {
    font-size: .72rem;
    padding: 1px 6px;
    background: rgba(255, 255, 255, .92);
}

/* Печатная версия отчёта */
@media print {
    .navbar, .btn, .no-print {
        display: none !important;
    }

    body {
        background: #fff;
    }
}
