#mapSearchInput {
    background-color: #1f2329;
    color: #fff;
    border: 2px solid #273657;
    border-radius: 4px;
    padding: 0.5rem 0.75rem 0.5rem 2.25rem;
    width: 250px;
    transition: all 0.2s ease-in-out;
}

#mapSearchInput:focus {
    outline: none;
    border-color: #3f8ff0;
    background-color: #2a2f37;
}

#mapSearchInput::placeholder {
    color: #888;
}

.search-container {
    position: relative;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    color: #888;
    pointer-events: none;
}

.search-result-item {
    padding: 0.75rem;
    color: #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-item:hover {
    background-color: #3f8ff0;
    color: #fff;
}

.search-result-item:hover .result-type {
    color: #fff;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-results-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.98);
    border: 1px solid #273657;
    border-top: none;
    border-radius: 0 0 4px 4px;
    z-index: 10000;
    max-height: 300px;
    overflow-y: auto;
}

.result-name {
    font-weight: bold;
}

.result-type {
    font-size: 0.8em;
    color: #ccc;
    font-style: italic;
}