/* Location map picker (register form) */
.location-map-picker {
    height: 280px;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(31, 41, 55, 0.1);
    background: #eef1f5;
    z-index: 1;
}

.location-map-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.location-map-status {
    font-size: 0.78rem;
    color: var(--brand-ink-soft, #5a6672);
    margin-top: 0.5rem;
}

.location-map-status.is-ok {
    color: #2f6b54;
}

.location-map-status.is-warn {
    color: #8a5a00;
}

.location-coords-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.location-coords-grid .form-control[readonly] {
    background: rgba(255, 255, 255, 0.55);
    color: #2f3a44;
    cursor: default;
}

@media (max-width: 575.98px) {
    .location-map-picker {
        height: 240px;
    }

    .location-coords-grid {
        grid-template-columns: 1fr;
    }
}
