.ev-filter-container {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        font-family: Arial, sans-serif;
    }
    
    .ev-filters {
        border: 1px solid #e5e7eb;
        padding: 20px;
        border-radius: 8px;
        width: 280px;
        flex-shrink: 0;
    }
    
    .ev-main-content {
        flex: 1;
    }
    
    .ev-search-header {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        align-items: center;
    }
    
    .ev-search-input {
        flex: 1;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
    }
    
    .notice.notice-success
    {
        color: #46b450;
        font-size: 18px;
    }

    .notice.notice-error {
        color: #ff0000;
        font-size: 18px;
    }

    .ev-search-btn {
        background: #17a2b8;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }
    
    .ev-search-btn:hover {
        background: #138496;
    }
    
    .ev-results-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .ev-results-count {
        font-size: 24px;
        font-weight: bold;
        color: #333;
    }
    
    .ev-sort-select {
        padding: 8px 12px;
        border: 1px solid #ddd;
        font-size: 14px;
        border-radius: 5px;
        background: white;
    }
    
    .filter-section {
        margin-bottom: 25px;
    }

    .ev-filter-title {
        font-size: 1.5rem !important;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .ev-filter-title svg {
        width: 1.5rem;
        height: 1.5rem;
        margin-right: 0.5rem;
    }

    .clear-filters-btn {
        background-color: #fff;
        color: #000;
        border: none;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-left: auto;
        transition: background-color 0.2s;
    }  
    
    .clear-filters-btn:hover {
        background-color: #fff;
        color: #000;
    }

    .filter-title {
        line-height: 1.25rem;
        color: #333;
        font-size: 16px;
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }

    
    .filter-select, .filter-input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .price-range-display {
        font-size: 12px;
        color: #666;
        margin-bottom: 10px;
    }
    
    .range-inputs {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .range-inputs input {
        flex: 1;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 3px;
        font-size: 12px;
    }
    
    .apply-filters-btn {
        width: 100%;
        background: #17a2b8;
        color: white;
        padding: 12px;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        margin-top: 20px;
    }
    
    .apply-filters-btn:hover {
        background: #138496;
    }

    
    .ev-vehicle-card {
        display: flex;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .ev-vehicle-image {
        width: 200px;
        background: #f0f0f0;
        flex-shrink: 0;
        position: relative;
    }
    
    .ev-vehicle-image img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }

    input#evFormSubmit {
        background-color: #00a3e0;
        color: #fff;
        border: none;
    }

    input#evFormSubmit:hover  {
        background-color: #0082B3;
    }
    
    .ev-vehicle-info {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .ev-vehicle-title {
        font-size: 20px;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
    }
    
    .ev-vehicle-subtitle {
        color: #666;
        margin-bottom: 15px;
    }
    
    .ev-vehicle-details {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        margin-bottom: 15px;
        font-size: 14px;
        color: #666;
    }

    .ev-vehicle-details svg {
        width: 1.2rem;
        margin-right: 0.2rem;
    }

    .ev-vehicle-details span {
        display: flex;
        align-items: center;
    }
    
    .ev-vehicle-tags {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .ev-tag {
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 12px;
        font-weight: bold;
    }
    
    .tag-green {
        background: #d4edda;
        color: #155724;
    }
    
    .tag-blue {
        background: #cce7ff;
        color: #004085;
    }
    
    .tag-purple {
        background: #e2d5f1;
        color: #6f42c1;
    }
    
    .tag-orange {
        background: #fff3cd;
        color: #856404;
    }
    
    .ev-vehicle-price-section {
        padding: 20px;
        text-align: right;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
        width: 200px;
    }
    
    .ev-vehicle-price {
        font-size: 24px;
        font-weight: bold;
        color: #17a2b8;
        margin-bottom: 10px;
    }
    
    .ev-seller-type { 
        text-transform: capitalize;
        padding: 2px 10px;
        border-radius: 34px;
        font-size: 12px;
        color: #000;
        margin-bottom: 15px;
        border: 1px solid hsl(0 0% 83%);
        line-height: 1.3;
    }
    
    .ev-view-details-btn {
        background: #17a2b8;
        font-size: 14px;
        color: white;
        padding: 5px 10px !important;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        text-decoration: none !important;
        display: inline-block;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .ev-view-details-btn:hover {
        background: #138496;
        color: white;
        text-decoration: none;
    }
    
    .ev-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 30px;
    }
    
    .ev-pagination a, .ev-pagination span {
        padding: 5px 15px;
        border: 1px solid #ddd;
        text-decoration: none !important;
        color: #333;
        border-radius: 4px;
    }
    
    .ev-pagination .current {
        background: #17a2b8;
        color: white;
        border-color: #17a2b8;
    }
    
    .ev-pagination a:hover {
        background: #f8f9fa;
    }
    
    .ev-loading {
        display: none;
        text-align: center;
        padding: 40px;
        color: #666;
    }
    
    .ev-loading.active {
        display: block;
    }
    
    .ev-loader {
        border: 3px solid #f3f3f3;
        border-top: 3px solid #17a2b8;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
        margin: 0 auto 20px;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
        .ev-filter-container {
            flex-direction: column;
        }
        
        .ev-filters {
            width: 100%;
        }
        
        .ev-vehicle-card {
            flex-direction: column;
        }
        
        .ev-vehicle-image {
            width: 100%;
        }
        
        .ev-vehicle-price-section {
            width: 100%;
            border-top: 1px solid #e0e0e0;
        }
        
        .ev-search-header {
            flex-direction: column;
        }
        
        .ev-vehicle-details {
            gap: 10px;
        }
    }

    #evForm {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .ev-field-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 20px;
    }

    .ev-field-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .ev-field {
        flex: 1 1 calc(50% - 20px);
    }

    .ev-field-full {
        flex: 1 1 100%;
    }

    .ev-field label {
        display: block;
        font-weight: 500;
        margin-bottom: 5px;
        font-size: 15px;
    }

    .ev-field input,
    .ev-field textarea {
        width: 100%;
        padding: 8px;
        font-size: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        margin-bottom: 10px;
    }