/* Location picker — gjenbrukbar widget for adresse-søk + kartvalg */
.lp-wrap { position: relative; }
.lp-input {
    width: 100%; padding: 10px 12px; font-size: 1rem;
    border: 1px solid #d0d6de; border-radius: 6px;
    box-sizing: border-box;
}
.lp-input:focus {
    outline: none; border-color: #ffb000; box-shadow: 0 0 0 3px rgba(255,176,0,0.15);
}
.lp-results {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 1000;
    background: #fff; border: 1px solid #d0d6de; border-top: none;
    max-height: 300px; overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.lp-item {
    padding: 10px 12px; cursor: pointer;
    border-bottom: 1px solid #f0f2f5;
}
.lp-item:hover { background: #f5f7fa; }
.lp-item:last-child { border-bottom: none; }
.lp-label { font-size: 0.95rem; color: #1a3050; font-weight: 500; }
.lp-coord { font-size: 0.8rem; color: #888; margin-top: 2px; font-family: monospace; }
.lp-empty {
    padding: 14px; color: #888; font-size: 0.9rem; text-align: center; font-style: italic;
    background: #fafbfc;
}
.lp-selected {
    margin-top: 8px; padding: 8px 12px; background: #f0f8f3;
    border: 1px solid #c8e8d4; border-radius: 6px; font-size: 0.9rem;
}
.lp-map {
    height: 320px; width: 100%; margin-top: 10px;
    border: 1px solid #d0d6de; border-radius: 6px;
}
