.vehicle-search-form {
    max-width: 950px;
    margin: 22px auto 14px auto;
    padding: 18px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
.vs-form-row { 
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
}
.vs-form-row .vs-form-group {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
}
.vs-form-group-button {
    min-width: 140px;
    justify-content: flex-end;
}
.vs-form-group label {
    margin-bottom: 6px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}
.vs-form-group input,
.vs-form-group select {
    padding: 8px 10px;
    font-size: 16px;
    border: 1px solid #666;
    border-radius: 6px;
    margin-bottom: 3px;
    background: #fafafa;
    transition: border-color 0.2s;
    color: #757575;
    min-height: 38px;
    height: 38px;
}
.vs-form-group input:focus,
.vs-form-group select:focus {
    border-color: #3a86ff;
    outline: none;
}
#search-vehicle-button {
    padding: 10px 32px;
    background: #0846ee;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
#search-vehicle-button:hover {
    background: #265ab7;
}
.vehicle-results {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.vehicle-result {
    background: #f6f6ff;
    border-radius: 8px;
    padding: 18px;
    width: 230px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
    text-align: center;
}
.vehicle-result h3 {
    margin: 9px 0 8px 0;
    font-size: 19px;
}
.vehicle-result p {
    margin: 0 0 8px 0;
}
.view-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 7px 15px;
    background: #3a86ff;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}
.view-btn:hover {
    background: #265ab7;
}
@media (max-width: 900px) {
    .vs-form-row { flex-direction: column; gap: 8px; }
}


.vehicle-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.vehicle-result-item {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vehicle-thumbnail {
    max-width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.vehicle-info h3 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #333;
}

.vehicle-info p {
    margin: 4px 0;
    font-size: 16px;
    color: #555;
}

.view-btn {
    margin-top: 16px;
    padding: 10px 24px;
    background: #3a86ff;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.view-btn:hover {
    background: #265ab7;
}

/* Mobile view */
@media (max-width: 768px) {
    .vehicle-results-grid {
        grid-template-columns: 1fr;
    }
    .vehicle-result-item {
        padding: 12px;
    }
}
