/* Location Autocomplete Styles */

/* OLD Location Badges - REMOVED - Now using location tag inside search bar */
/* The location is now displayed as a tag inside the search bar itself */

.clear-location-btn {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #dc3545;
    background: white;
    transition: all 0.2s ease;
}

.clear-location-btn:hover {
    background: #dc3545;
    color: white;
    transform: rotate(90deg);
}

/* Modern Search Container - Property24 Style */
.modern-search-container {
    width: 100%;
    margin-bottom: 12px;
}

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

.search-input-group {
    display: flex;
    align-items: stretch;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-input-group:focus-within {
    border-color: #dc3545;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.12);
    transform: translateY(-1px);
}

.search-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-right: 1px solid #f0f0f0;
}

.search-icon-wrapper i {
    color: #dc3545;
    font-size: 18px;
}

/* Multiple Location Tags Container */
.selected-locations-container {
    display: none; /* Hidden when empty */
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 12px;
    align-items: center;
}

/* Individual Location Tag */
.location-tag-multi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #dc3545 0%, #b91c1c 100%);
    color: white;
    padding: 6px 10px 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.2);
    transition: all 0.2s ease;
    animation: slideIn 0.2s ease-out;
}

.location-tag-multi:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.location-tag-multi i {
    font-size: 12px;
    opacity: 0.9;
}

.location-tag-multi span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Remove button for each tag */
.location-tag-remove {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    color: white;
    margin-left: 2px;
}

.location-tag-remove:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.15);
}

.location-tag-remove i {
    font-size: 9px;
}

/* Animation for tag appearance */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modern-search-input {
    flex: 1;
    border: none;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    background: transparent;
}

.modern-search-input:focus {
    outline: none;
}

.modern-search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.btn-search-main {
    border: none;
    border-radius: 0;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #dc3545 0%, #b91c1c 100%);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-search-main:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: scale(1.02);
}

/* Quick Location Links - Property24 Style */
.quick-locations {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
}

.quick-location-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    color: #4b5563;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.quick-location-link:hover {
    background: #fff5f5;
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1);
}

.quick-location-link::before {
    content: '📍';
    margin-right: 6px;
    font-size: 12px;
}

/* Autocomplete Dropdown - Updated for modern container */
.modern-autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    max-height: 450px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: none;
}

.modern-autocomplete-dropdown.show {
    display: block;
    animation: slideDown 0.2s ease-out;
}

/* Legacy autocomplete - redirect to modern */
#location-autocomplete-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    max-height: 450px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: none;
}

#location-autocomplete-results.show {
    display: block;
    animation: slideDown 0.2s ease-out;
}

/* Autocomplete Item */
.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
    position: relative;
}

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

.autocomplete-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, #dc3545, transparent);
    transition: width 0.2s ease;
}

.autocomplete-item:hover::before,
.autocomplete-item.active::before {
    width: 4px;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: linear-gradient(90deg, #fff5f5 0%, #ffffff 100%);
    padding-left: 20px;
}

.autocomplete-item.active {
    background: linear-gradient(90deg, #ffe8e8 0%, #fff5f5 100%);
}

.autocomplete-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 2px solid #ffd4d4;
    border-radius: 50%;
    margin-right: 14px;
    transition: all 0.2s ease;
}

.autocomplete-item:hover .autocomplete-item-icon,
.autocomplete-item.active .autocomplete-item-icon {
    background: linear-gradient(135deg, #dc3545 0%, #c62828 100%);
    border-color: #dc3545;
    transform: scale(1.05);
}

.autocomplete-item-icon i {
    color: #dc3545;
    font-size: 16px;
    transition: color 0.2s ease;
}

.autocomplete-item:hover .autocomplete-item-icon i,
.autocomplete-item.active .autocomplete-item-icon i {
    color: white;
}

.autocomplete-item-content {
    flex-grow: 1;
    min-width: 0;
}

.autocomplete-item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item-name strong {
    color: #dc3545;
    background-color: #fff5f5;
    padding: 0 2px;
    border-radius: 2px;
}

.autocomplete-item-path {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item-badge {
    flex-shrink: 0;
    margin-left: 12px;
}

.autocomplete-item-badge .badge {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.autocomplete-item-badge .bg-primary {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%) !important;
}

.autocomplete-item-badge .bg-info {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%) !important;
}

.autocomplete-item-badge .bg-success {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%) !important;
}

.autocomplete-item-badge .bg-secondary {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%) !important;
}

/* Empty State */
.autocomplete-empty {
    padding: 32px 16px;
    text-align: center;
    color: #999;
}

.autocomplete-empty i {
    font-size: 32px;
    margin-bottom: 12px;
}

.autocomplete-empty p {
    font-size: 14px;
}

/* Loading State */
.autocomplete-loading {
    padding: 20px 16px;
    text-align: center;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Error State */
.autocomplete-error {
    padding: 20px 16px;
    text-align: center;
    color: #dc3545;
}

.autocomplete-error i {
    font-size: 24px;
    margin-bottom: 8px;
}

/* Scrollbar Styling */
#location-autocomplete-results::-webkit-scrollbar {
    width: 8px;
}

#location-autocomplete-results::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 0 8px 8px 0;
}

#location-autocomplete-results::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

#location-autocomplete-results::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

/* Search Box with Autocomplete Combined */
/* Legacy - hide if using modern */
.search-with-autocomplete {
    display: none;
}

/* Quick Location Chips (Optional) */
.location-quick-select {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.location-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.location-chip:hover {
    background-color: #fff5f5;
    border-color: #dc3545;
    color: #dc3545;
}

.location-chip i {
    margin-right: 6px;
    font-size: 12px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* Filter hero mobile padding */
    .filter-hero {
        padding: 20px 0 30px;
    }
    
    .filter-hero .container {
        padding: 0 12px;
    }
    
    /* Hero title mobile */
    .hero-title-wrapper {
        margin-bottom: 20px !important;
    }
    
    .hero-title-line1 {
        font-size: 24px !important;
    }
    
    .hero-title-line2 {
        font-size: 18px !important;
    }
    
    /* Search card mobile */
    .search-card {
        margin-bottom: 20px !important;
        border-radius: 16px !important;
    }
    
    .search-card .card-body {
        padding: 16px !important;
    }
    
    /* Property type tabs - Better mobile layout */
    .search-type-tabs {
        margin-bottom: 16px;
    }
    
    .search-type-tabs .btn-group {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        box-shadow: none;
        border-radius: 0;
    }
    
    .search-type-tabs label {
        border-radius: 10px !important;
        padding: 12px 8px !important;
        font-size: 14px !important;
        font-weight: 600;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-height: 60px;
        justify-content: center;
    }
    
    .search-type-tabs label i {
        font-size: 16px !important;
        margin: 0 !important;
    }
    
    /* Search input group - Better mobile stack */
    .search-input-group {
        flex-direction: column;
        border-radius: 16px;
        gap: 0;
    }
    
    .search-icon-wrapper {
        padding: 12px 18px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        justify-content: flex-start;
        background: linear-gradient(135deg, #fff9f9 0%, #ffffff 100%);
    }
    
    .search-icon-wrapper i {
        font-size: 18px;
        margin-right: 8px;
    }
    
    /* Multiple location tags on mobile */
    .selected-locations-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 18px;
        width: 100%;
        gap: 6px;
    }
    
    .location-tag-multi {
        font-size: 12px;
        padding: 5px 8px 5px 10px;
    }
    
    .location-tag-multi span {
        max-width: 200px;
    }
    
    /* Modern search box mobile */
    .modern-search-input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 16px 18px;
        border-radius: 0;
    }
    
    .btn-search-main {
        padding: 18px 24px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 0 0 14px 14px;
        width: 100%;
        letter-spacing: 1px;
    }
    
    .btn-search-main i {
        font-size: 16px;
    }
    
    /* Quick locations */
    .quick-locations {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .quick-location-link {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    /* Autocomplete dropdown mobile */
    #location-autocomplete-results {
        max-height: 320px;
        border-radius: 12px;
        margin-top: 8px;
        left: 0;
        right: 0;
        max-width: 100%;
    }
    
    .autocomplete-item {
        padding: 14px 16px;
    }
    
    .autocomplete-item-icon {
        width: 42px;
        height: 42px;
        margin-right: 14px;
    }
    
    .autocomplete-item-name {
        font-size: 15px;
        font-weight: 600;
    }
    
    .autocomplete-item-path {
        font-size: 13px;
        margin-top: 2px;
    }
    
    /* No legacy styles needed */
    
    .clear-location-btn {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
    
    /* Filter controls mobile - Smart 2-row layout */
    .filter-controls {
        margin-top: 12px;
    }
    
    .filter-controls .row {
        gap: 6px !important;
        margin: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        row-gap: 8px !important;
    }
    
    /* Hide some filters on medium mobile - show most important ones */
    .filter-controls .col-6:nth-child(1), /* Province */
    .filter-controls .col-6:nth-child(2), /* City */
    .filter-controls .col-6:nth-child(3), /* Category */
    .filter-controls .col-6:nth-child(4), /* Min Price */
    .filter-controls .col-6:nth-child(5), /* Max Price */
    .filter-controls .col-6:nth-child(6) { /* More Filters */
        display: block;
    }
    
    /* Hide suburb filter on medium mobile to save space */
    .filter-controls .col-6:nth-child(3) {
        display: none;
    }
    
    .filter-controls .col-6,
    .filter-controls .col-md-2 {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }
    
    /* Make filters more compact on mobile */
    .filter-controls .form-select,
    .filter-controls .form-control {
        font-size: 13px !important;
        padding: 8px 10px !important;
        border-radius: 8px !important;
        border: 1px solid #e5e7eb !important;
        min-height: 38px;
        font-weight: 500;
        line-height: 1.3;
    }
    
    .filter-controls .form-select:focus,
    .filter-controls .form-control:focus {
        border-color: #dc3545 !important;
        box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
    }
    
    /* More filters button mobile - smaller */
    .filter-controls .btn {
        font-size: 13px !important;
        padding: 8px 10px !important;
        border-radius: 8px !important;
        font-weight: 600;
        min-height: 38px;
        border-width: 1px;
    }
    
    /* Hide labels/placeholders to save space */
    .filter-controls .form-select option:first-child,
    .filter-controls .form-control::placeholder {
        font-size: 12px;
        color: #6b7280;
    }
    
    /* Make price inputs more compact */
    .filter-controls input[type="number"] {
        font-size: 12px !important;
        padding: 6px 8px !important;
    }
    
    /* Additional filters collapse mobile */
    #additionalFilters .card-body {
        padding: 16px 12px !important;
    }
    
    #additionalFilters .form-control,
    #additionalFilters .form-select {
        font-size: 15px !important;
        padding: 12px 14px !important;
        min-height: 48px;
    }
    
    #featuresCollapse .form-check {
        margin-bottom: 12px;
    }
    
    #featuresCollapse .form-check-label {
        font-size: 15px !important;
        padding-left: 8px;
    }
    
    #featuresCollapse .form-check-input {
        width: 22px;
        height: 22px;
        margin-top: 0;
    }
    
    /* Results header mobile */
    .results-header {
        padding: 16px 12px;
        margin: 0 -12px;
    }
    
    .results-count {
        font-size: 18px !important;
        font-weight: 700;
    }
    
    /* View toggle buttons mobile */
    .view-toggle .btn {
        padding: 10px 16px !important;
        font-size: 18px !important;
        border-radius: 8px;
    }
}

/* Large screens - enhance search box */
@media (min-width: 1200px) {
    .modern-search-input {
        font-size: 18px;
        padding: 10px 24px;
    }
    
    .search-icon-wrapper {
        padding: 0 24px;
    }
    
    .btn-search-main {
        padding: 20px 48px;
        font-size: 17px;
    }
}

/* Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#location-autocomplete-results.show {
    animation: slideDown 0.2s ease-out;
}

/* Mobile-first touch improvements */
@media (max-width: 768px) {
    /* Ensure form elements are touch-friendly */
    input[type="text"],
    input[type="number"],
    input[type="tel"],
    select,
    button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: rgba(220, 53, 69, 0.1);
    }
    
    /* Improve button touch targets */
    button,
    .btn,
    a.btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for form rows */
    .row.g-2 {
        row-gap: 12px !important;
    }
    
    .row.g-3 {
        row-gap: 16px !important;
    }
    
    /* Improve checkbox/radio touch targets */
    .form-check-input {
        cursor: pointer;
        min-width: 20px;
        min-height: 20px;
    }
    
    .form-check-label {
        cursor: pointer;
        padding-left: 8px;
        user-select: none;
    }
    
    /* Filter scroll indicator */
    .filter-controls::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.8));
        pointer-events: none;
        z-index: 10;
    }
    
    /* Add subtle shadow to indicate scrollability */
    .filter-controls {
        position: relative;
        box-shadow: inset -10px 0 10px -10px rgba(0,0,0,0.1);
    }
}

/* Focus visible for accessibility */
.autocomplete-item:focus-visible {
    outline: 2px solid #dc3545;
    outline-offset: -2px;
}

/* Property Type Tabs Inside Search */
.search-type-tabs {
    margin-bottom: 12px;
}

.search-type-tabs .btn-group {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.search-type-tabs .btn-check:checked + label {
    font-weight: 600;
    transform: scale(1);
    z-index: 2;
}

.search-type-tabs .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.search-type-tabs .btn-outline-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    background-color: rgba(220, 53, 69, 0.1);
}

.search-type-tabs .btn-check:checked + .btn-outline-danger {
    background: linear-gradient(135deg, #dc3545 0%, #b91c1c 100%);
    border-color: #dc3545;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.search-type-tabs label {
    transition: all 0.2s ease;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid;
}

.search-type-tabs label i {
    font-size: 13px;
}

/* Extra small screens - Smartphones in portrait */
@media (max-width: 576px) {
    /* Hero titles even smaller */
    .hero-title-line1 {
        font-size: 22px !important;
        line-height: 1.3;
    }
    
    .hero-title-line2 {
        font-size: 16px !important;
    }
    
    /* Search card tighter padding */
    .search-card .card-body {
        padding: 12px !important;
    }
    
    /* Property type tabs stacked on very small screens */
    .search-type-tabs .btn-group {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .search-type-tabs label {
        padding: 14px 16px !important;
        font-size: 15px !important;
        flex-direction: row;
        min-height: auto;
        gap: 10px;
        justify-content: center;
    }
    
    .search-type-tabs label i {
        font-size: 18px !important;
        margin: 0 !important;
    }
    
    /* Search input adjustments */
    .modern-search-input {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .btn-search-main {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    /* Tablet view for multiple tags */
    .location-tag-multi {
        font-size: 12px;
        padding: 5px 9px 5px 11px;
    }
    
    /* COMPACT FILTER LAYOUT - Horizontal scrollable */
    .filter-controls {
        margin-top: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .filter-controls::-webkit-scrollbar {
        display: none;
    }
    
    .filter-controls .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        margin: 0 !important;
        min-width: max-content;
        padding-bottom: 4px;
    }
    
    .filter-controls .col-6,
    .filter-controls .col-md-2 {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 120px;
        max-width: 140px;
        padding: 0 !important;
    }
    
    /* Ultra-compact filter inputs */
    .filter-controls .form-select,
    .filter-controls .form-control {
        font-size: 13px !important;
        padding: 6px 10px !important;
        border-radius: 6px !important;
        border: 1px solid #e5e7eb !important;
        min-height: 36px;
        font-weight: 500;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .filter-controls .form-select:focus,
    .filter-controls .form-control:focus {
        border-color: #dc3545 !important;
        box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
    }
    
    /* Price inputs - show currency symbol */
    .filter-controls input[type="number"] {
        font-size: 12px !important;
        padding: 4px 8px !important;
        min-height: 36px;
    }
    
    .filter-controls input[type="number"]::placeholder {
        font-size: 11px;
    }
    
    /* More filters button - compact */
    .filter-controls .btn {
        font-size: 12px !important;
        padding: 6px 10px !important;
        border-radius: 6px !important;
        font-weight: 600;
        min-height: 36px;
        white-space: nowrap;
        border-width: 1px;
    }
    
    .filter-controls .btn i {
        font-size: 11px !important;
        margin-right: 4px !important;
    }
    
    /* Autocomplete results */
    .autocomplete-item {
        padding: 12px 14px;
    }
    
    .autocomplete-item-icon {
        width: 38px;
        height: 38px;
    }
    
    .autocomplete-item-name {
        font-size: 14px;
    }
    
    .autocomplete-item-path {
        font-size: 12px;
    }
    
    /* Results header */
    .results-count {
        font-size: 16px !important;
    }
    
    .view-toggle .btn {
        padding: 8px 14px !important;
        font-size: 16px !important;
    }
}

