.vfosm-standalone {
    display: grid;
    gap: .6rem;
    margin: .75rem 0;
    width: 100%;
}
.vfosm-standalone-search,
.vfosm-standalone-coordinates {
    display: flex;
    gap: .5rem;
    width: 100%;
}
.vfosm-standalone-search input,
.vfosm-standalone-coordinates input {
    min-width: 0;
    width: 100%;
}
.vfosm-standalone-coordinates label {
    display: grid;
    flex: 1 1 0;
    font-size: .875rem;
    gap: .25rem;
    margin: 0;
}
.vfosm-standalone-map {
    background: #d7d7d7;
    border: 1px solid var(--border-color, #ced4da);
    border-radius: .375rem;
    cursor: grab;
    isolation: isolate;
    overflow: hidden;
    position: relative;
    touch-action: none;
    user-select: none;
    width: 100%;
}
.vfosm-standalone-map:active { cursor: grabbing; }
.vfosm-tiles { inset: 0; overflow: hidden; position: absolute; z-index: 1; }
.vfosm-tile {
    height: 256px !important;
    max-height: none !important;
    max-width: none !important;
    min-height: 0 !important;
    min-width: 0 !important;
    position: absolute;
    width: 256px !important;
}
.vfosm-marker {
    background: #d92323;
    border: 2px solid #fff;
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 2px 7px rgba(0,0,0,.45);
    height: 26px;
    margin-left: -13px;
    margin-top: -26px;
    position: absolute;
    transform: rotate(-45deg);
    width: 26px;
    z-index: 4;
}
.vfosm-marker::after {
    background: #fff;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 7px;
    position: absolute;
    top: 7px;
    width: 8px;
}
.vfosm-controls {
    display: grid;
    gap: 3px;
    left: 10px;
    position: absolute;
    top: 10px;
    z-index: 5;
}
.vfosm-controls button {
    background: #fff;
    border: 1px solid rgba(0,0,0,.35);
    border-radius: 3px;
    color: #111;
    font-size: 20px;
    font-weight: 700;
    height: 32px;
    line-height: 1;
    padding: 0;
    width: 32px;
}
.vfosm-attribution {
    background: rgba(255,255,255,.85);
    bottom: 0;
    color: #111;
    font-size: 11px;
    padding: 2px 5px;
    position: absolute;
    right: 0;
    z-index: 5;
}
.vfosm-status {
    color: var(--body-color, #555);
    font-size: .875rem;
}
.vfosm-status[data-state="error"] { color: #b02a37; }
.vfosm-suggestions {
    background: var(--body-bg, #fff);
    border: 1px solid var(--border-color, #ced4da);
    border-radius: .375rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    list-style: none;
    margin: 0;
    max-height: 16rem;
    overflow-y: auto;
    padding: .25rem 0;
    z-index: 20;
}
.vfosm-suggestions li {
    cursor: pointer;
    padding: .5rem .75rem;
}
.vfosm-suggestions li:hover {
    background: var(--primary, #0d6efd);
    color: #fff;
}
@media (max-width: 640px) {
    .vfosm-standalone-search,
    .vfosm-standalone-coordinates {
        display: grid;
    }
}
