#geotab-device-map {
    width: 100%;
    height: min(58vh, 560px);
    min-height: 360px;
    border-radius: 8px;
}

.shuttle-map-marker {
    background: transparent;
    border: 0;
}

.shuttle-map-marker-content {
    display: flex;
    align-items: center;
    width: max-content;
    transform: translate(-18px, -18px);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .35));
}

.shuttle-map-marker-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 3px solid white;
    border-radius: 50%;
    background: #D99756;
    font-size: 21px;
}

.shuttle-map-marker-label {
    margin-left: 5px;
    padding: 4px 8px;
    border: 2px solid white;
    border-radius: 6px;
    background: #03045E;
    color: white;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.shuttle-status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.public-shuttle-panel {
    padding: 1rem;
    border: 1px solid #d5d9dd;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.public-shuttle-heading {
    color: #03045e !important;
}

.shuttle-status-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.shuttle-status-dot {
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    flex: 0 0 0.7rem;
    border-radius: 50%;
}

.shuttle-status-dot-live {
    background-color: #2e7d32;
}

.shuttle-status-dot-no-location {
    background-color: #ed9c14;
}

.public-shuttle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 0.75rem;
    width: 100%;
}

.public-shuttle-label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    padding: 0.65rem 0.8rem;
    border: 1px solid;
    border-radius: 6px;
    font-weight: 600;
}

.public-shuttle-label-live {
    color: #fff;
    background-color: #2e7d32;
    border-color: #1b5e20;
}

.public-shuttle-label-no-location {
    color: #2f2400;
    background-color: #ffb300;
    border-color: #c68400;
}

.public-shuttle-label-live .shuttle-status-dot {
    background-color: #fff;
}

.public-shuttle-label-no-location .shuttle-status-dot {
    background-color: #5f4300;
}

.public-shuttle-name {
    min-width: 0;
    overflow-wrap: anywhere;
}
