.search-wrapper {
    position: relative;
    height: 50px; /* Фиксированная высота */
    margin-bottom: 20px;
}

.search-container {
    position: relative;
    width: 100%;
}

.results {
    position: absolute;
    top: 45px; /* Высота input + отступ */
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: none;
}

.loading {
    text-align: center;
    padding: 10px;
    color: #666;
    font-style: italic;
    background: white;
}

.result-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
    background: white;
}

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

.major-city {
    font-weight: bold;
    background-color: #f8f9fa;
    border-left: 3px solid #007bff;
}

.result-type {
    font-size: 12px;
    color: #6c757d;
    float: right;
}