/* Simple DNA Location Search - Styled like image 2 */

.simple-dna-search-container {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    font-family:'Montserrat';
}

/* White card wrapper */
.simple-dna-search-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(80, 120, 180, 0.15), 0 2px 8px rgba(80, 120, 180, 0.08);
    padding: 24px 28px 28px;
}

/* Heading row */
.simple-dna-search-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.simple-dna-search-heading .heading-state {
    font-size: 18px;
    font-weight: 700;
    color: #f90;
    letter-spacing: 0.01em;
}

.simple-dna-search-heading .heading-heart {
    font-size: 20px;
    color: #a8bfe8;
    line-height: 1;
}

.simple-dna-search-heading .heading-city {
    font-size: 18px;
    font-weight: 700;
    color: #f90;
    letter-spacing: 0.01em;
}

/* Input + Button row */
.simple-search-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.simple-search-input {
    flex: 1;
    padding: 13px 18px;
    font-size: 15px;
    color: #444;
    background: #f7f9fc;
    border: 1.5px solid #dde6f5;
    border-radius: 8px !important;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.simple-search-input::placeholder {
    color: #aab8d0;
}

.simple-search-input:focus {
    border-color: #3a7bd5;
    box-shadow: 0 0 0 3px rgba(58, 123, 213, 0.1);
    background: #fff;
}

/* Orange button like image 2 */
.simple-search-button {
    padding: 13px 26px;
    background: linear-gradient(135deg, #ff9a2e 0%, #f07a00 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(240, 122, 0, 0.3);
    font-family: inherit;
}

.simple-search-button:hover {
    background: linear-gradient(135deg, #ffa94d 0%, #e06e00 100%);
    box-shadow: 0 6px 18px rgba(240, 122, 0, 0.4);
    transform: translateY(-1px);
}

.simple-search-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(240, 122, 0, 0.3);
}

/* Suggestions dropdown */
.simple-suggestions-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    background: #fff;
    border: 1.5px solid #dde6f5;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(80, 120, 180, 0.15);
    z-index: 9999;
    overflow: hidden;
    max-height: 320px;
    overflow-y: auto;
}

.simple-suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f0f4fb;
}

.simple-suggestion-item:last-child {
    border-bottom: none;
}

.simple-suggestion-item:hover,
.simple-suggestion-item.highlighted {
    background: #f0f6ff;
    color: #3a7bd5;
}

.simple-suggestion-item .suggestion-icon {
    color: #3a7bd5;
    font-size: 16px;
    flex-shrink: 0;
}

.simple-suggestion-item .suggestion-name {
    font-weight: 600;
}

.simple-suggestion-item .suggestion-detail {
    color: #888;
    font-size: 13px;
    margin-left: auto;
}

/* Loading state */
.simple-suggestions-dropdown .loading-item {
    padding: 14px 18px;
    color: #888;
    font-size: 14px;
    text-align: center;
}

/* No results */
.simple-suggestions-dropdown .no-results-item {
    padding: 14px 18px;
    color: #aab8d0;
    font-size: 14px;
    text-align: center;
}

/* Responsive */
@media (max-width: 500px) {
    .simple-dna-search-card {
        padding: 18px 16px 20px;
        border-radius: 12px;
    }

    .simple-search-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .simple-search-button {
        width: 100%;
        padding: 13px 20px;
    }

    .simple-dna-search-heading {
        font-size: 15px;
    }
}