.bpt-location-field {
    position: relative !important;
}

.bpt-suggestions {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 5px);
    right: 0;
    left: 0;
    display: none;
    max-height: 290px;
    margin: 0 !important;
    padding: 6px !important;
    overflow-y: auto;
    border: 1px solid #c9c0b2;
    background: #fff;
    box-shadow: 0 18px 40px rgba(17, 17, 19, 0.18);
    list-style: none !important;
}

.bpt-suggestions.is-open {
    display: block;
}

.bpt-suggestions li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.bpt-suggestion {
    width: 100%;
    padding: 11px 12px;
    border: 0;
    background: #fff;
    color: #111113;
    font: 500 0.9rem/1.35 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-align: left;
    cursor: pointer;
}

.bpt-suggestion:hover,
.bpt-suggestion:focus,
.bpt-suggestion.is-active {
    outline: none;
    background: #f4efe5;
    color: #6f511b;
}

.bpt-suggestion-empty {
    padding: 11px 12px;
    color: #6e6a63;
    font-size: 0.82rem;
}

.bpt-route-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 2px;
    border: 1px solid rgba(181, 139, 59, 0.7);
    background: #d8d1c5;
    color: #111113;
}

.bpt-route-panel[hidden],
.bpt-route-status[hidden] {
    display: none !important;
}

.bpt-route-metric {
    padding: 18px 20px;
    background: #f7f4ed;
}

.bpt-route-metric span {
    display: block;
    margin-bottom: 5px;
    color: #6e6a63;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bpt-route-metric strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 500;
}

.bpt-route-note {
    grid-column: 1 / -1;
    margin: 0;
    padding: 13px 20px;
    background: #111113;
    color: #d8d3ca;
    font-size: 0.76rem;
    line-height: 1.55;
}

.bpt-route-note strong {
    color: #d6b66f;
}

.bpt-route-status {
    grid-column: 1 / -1;
    margin: 0;
    padding: 13px 15px;
    border-left: 3px solid #b58b3b;
    background: #f6f1e6;
    color: #4f493f;
    font-size: 0.8rem;
}

@media (max-width: 640px) {
    .bpt-route-panel {
        grid-template-columns: 1fr;
    }

    .bpt-route-note {
        grid-column: auto;
    }
}

