.location-picker-wrap {
    position: relative;
}

.location-picker-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 1050;
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.12);
}

.location-picker-dropdown--dark {
    background: #141414;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.45);
}

.location-picker-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.65rem 0.85rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.35;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: inherit;
}

.location-picker-dropdown--dark .location-picker-item {
    border-bottom-color: rgba(255, 255, 255, 0.06);
    color: #f3f4f6;
}

.location-picker-item:last-child {
    border-bottom: 0;
}

.location-picker-item:hover,
.location-picker-item:focus {
    background: rgba(212, 175, 55, 0.12);
    outline: none;
}

.location-picker-item small {
    display: block;
    margin-top: 0.15rem;
    opacity: 0.65;
    font-size: 0.72rem;
}

.location-picker-map {
    height: 220px;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.location-picker-map--dark {
    border-color: rgba(255, 255, 255, 0.1);
}

.location-picker-status {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.35rem;
}

.location-picker-item--error {
    color: #dc3545;
    cursor: default;
    font-style: italic;
}

.location-picker-item--error:hover,
.location-picker-item--error:focus {
    background: transparent;
}
