/* EPSG Selector - Autocomplete field */

.epsg-autocomplete-wrapper {
    position: relative;
}

.epsg-current-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.epsg-current-value {
    font-size: 13px;
}

.epsg-clear-btn {
    padding: 0 4px;
    color: #999;
    font-size: 12px;
}

.epsg-clear-btn:hover {
    color: #c00;
}

.epsg-search-wrapper {
    position: relative;
}

.epsg-search-input {
    width: 100%;
}

.epsg-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.epsg-result-item {
    display: flex;
    flex-direction: column;
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.1s;
}

.epsg-result-item:last-child {
    border-bottom: none;
}

.epsg-result-item:hover {
    background-color: #f5f8ff;
}

.epsg-result-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.epsg-result-srid {
    font-weight: 600;
    font-size: 12px;
    color: #2563eb;
}

.epsg-result-type {
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 3px;
    background: #e8eef5;
    color: #4a6fa5;
    font-weight: 500;
    text-transform: capitalize;
}

.epsg-result-name {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.epsg-no-results {
    padding: 12px;
    text-align: center;
    color: #999;
    font-size: 12px;
    font-style: italic;
}

/* Detail/list display */
.epsg-display-label {
    font-size: 13px;
}
