.suburb-search-widget-container-ea27a677 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 15px 0;
}

.suburb-search-container {
    margin: 0 auto;
    width: 100%;
}

.suburb-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    padding: 6px 12px 6px 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
}

.suburb-search-wrapper:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1), 0 4px 6px -2px rgba(59, 130, 246, 0.05);
}

.search-icon-svg {
    display: flex;
    align-items: center;
    color: #9ca3af;
    margin-right: 12px;
}

.search-icon-svg svg {
    width: 20px;
    height: 20px;
}

.suburb-search-input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    padding: 8px 0;
    color: #1f2937;
    width: 100%;
}

.search-submit-btn {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    outline: none;
    padding: 10px 24px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.search-submit-btn:hover {
    filter: brightness(0.95);
}

/* Autocomplete Dropdown List */
.search-autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
}

.autocomplete-item {
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s ease;
}

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

.autocomplete-item:hover {
    background: #f3f4f6;
}

.autocomplete-suburb-info {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
}

.autocomplete-suburb-city {
    color: #6b7280;
    font-size: 12px;
    margin-left: 8px;
}

.autocomplete-postcode {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Result Feedback Card */
.search-result-feedback {
    margin-top: 18px;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 500;
    animation: fadeIn_ea27a677 0.3s ease;
}

.result-card {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.result-card.success-card {
    background: #f0fdf4;
    border-left: 4px solid #22c55e;
    color: #15803d;
}

.result-card.not-found-card {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #b91c1c;
}

.result-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Content block styling below search */
.content-block-ea27a677 {
    margin-top: 35px;
    text-align: center;
}

.image-wrapper {
    margin-bottom: 20px;
}

.content-image {
    height: auto;
    border-radius: 12px;
}

.content-heading {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
}

.content-subheading {
    font-size: 16px;
    margin-bottom: 15px;
}

.content-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@keyframes fadeIn_ea27a677 {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}
