.hason-custom-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px; 
    margin: 10px auto;
}

.hason-custom-search-wrapper .form-flex-container {
    display: flex;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden; 
}

.hason-custom-search-wrapper .post-type-select-wrapper {
    flex-basis: auto;
    flex-shrink: 0;
    min-width: 120px; 
}
.hason-custom-search-wrapper .search-post-type {
    width: 100%;
    height: 100%;
    padding: 10px;
    border: none;
    background-color: #f5f5f5;
    color: #555;
    font-size: 14px;
    border-right: 1px solid #ddd;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    padding-right: 30px; 
    cursor: pointer;
}

.hason-custom-search-wrapper .search-field-wrapper {
    flex-grow: 1; 
}
.hason-custom-search-wrapper .search-field {
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    border: none;
    font-size: 14px;
    box-sizing: border-box; 
    margin: 0;
}
.hason-custom-search-wrapper .search-field:focus {
    outline: none;
    box-shadow: none;
}

.hason-custom-search-wrapper .search-form {
    width: 100%;
}
.hason-custom-search-wrapper .search-submit-wrapper {
    flex-basis: 70px;
    flex-shrink: 0;
}
.hason-custom-search-wrapper .search-submit {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #0073aa; 
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}
.hason-custom-search-wrapper .search-submit:hover {
    background-color: #005177;
}

.hason-ajax-results {
    position: absolute;
    top: 100%; 
    left: 0;
    right: 0;
    background: #fff;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}
.ajax-results-list {
    padding: 10px;
}
.ajax-result-item a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}
.ajax-result-item a:last-child {
    border-bottom: none;
}
.ajax-result-item a:hover {
    background-color: #f9f9f9;
}
.ajax-no-results {
    padding: 15px;
    color: #777;
    text-align: center;
}

.hason-loading-spinner {
    display: block;
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
body.search-results .page-content .row {
    justify-content: flex-start !important;
}
.hason-search-section img.attachment-medium.size-medium.wp-post-image {
    height: 150px;
    object-fit: cover;
}

.hason-section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.hason-view-more-wrapper {
    text-align: center;
    margin: 0;
}

hr.hason-section-divider {
    margin: 10px 0;
    border: 0;
    border-top: 1px solid #eee;
}

.hason-search-section:last-of-type + hr.hason-section-divider {
    display: none;
}