.location-add-button,
.location-entry-help--touch {
    display: none;
}

.location-entry-help {
    color: var(--mantine-color-dimmed, #6c757d);
    font-size: 0.75rem;
    margin-top: 4px;
}

.location-resolving-status {
    align-items: center;
    color: var(--mantine-color-dimmed, #6c757d);
    display: flex;
    font-size: 0.85rem;
    gap: 7px;
    margin-top: 6px;
}

.location-resolving-indicator {
    animation: location-resolving-spin 0.8s linear infinite;
    border: 2px solid color-mix(in srgb, currentColor 25%, transparent);
    border-radius: 50%;
    border-top-color: currentColor;
    height: 14px;
    width: 14px;
}

.location-tags-input .mantine-TagsInput-pill button {
    min-height: 24px;
    min-width: 24px;
}

@keyframes location-resolving-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (pointer: coarse) {
    .location-add-button {
        display: inline-flex;
        min-height: 44px;
    }

    .location-entry-help--desktop {
        display: none;
    }

    .location-entry-help--touch {
        display: inline;
    }
}

.location-filter-status {
    color: #9aa0a6;
    font-size: 0.85rem;
    margin-top: 6px;
}

.location-filter-status .mantine-Popover-root {
    display: inline-block;
}

.location-zip-more-button {
    color: inherit;
    cursor: pointer;
    display: inline;
    font: inherit;
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, currentColor 55%, transparent);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.location-zip-more-button:hover {
    color: var(--mantine-primary-color-filled, #0ca678);
}

.location-zip-more-button:focus-visible {
    border-radius: 3px;
    outline: 2px solid var(--mantine-primary-color-filled, #0ca678);
    outline-offset: 2px;
}

.location-zip-popover-title {
    color: var(--mantine-color-text);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.location-zip-popover-list {
    display: grid;
    font-variant-numeric: tabular-nums;
    gap: 4px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 180px;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.location-zip-popover-list span {
    color: var(--mantine-color-text);
    line-height: 1.4;
}
