#pre-advanced-search {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 24px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto 32px;
}

#pre-advanced-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.pre-search-row {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.pre-search-row label {
    font-weight: 500;
    min-width: 120px;
}

#pre-advanced-search-map {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #bdbdbd;
}

#pre-advanced-search-results {
    margin-top: 24px;
}

.pre-advanced-search-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pre-search-results-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pre-search-result-item {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 12px;
    width: 220px;
    transition: box-shadow 0.2s;
}

.pre-search-result-item:hover {
    box-shadow: 0 2px 12px rgba(46, 125, 50, 0.08);
}

.pre-search-result-item img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 8px;
}

.pre-result-meta {
    font-size: 0.95em;
    color: #666;
    margin-top: 4px;
}

.pre-no-results {
    color: #b71c1c;
    font-weight: 500;
}

.pre-loading {
    color: #2e7d32;
    font-weight: 500;
}

.pre-error {
    color: #b71c1c;
    font-weight: 500;
}