#eval-results { display: block !important; }
/* Main Container */
.car-eval-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Form Elements */
#car-eval-form .form-group {
    margin-bottom: 20px;
}

#car-eval-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

#car-eval-form input,
#car-eval-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    font-size: 15px;
    transition: all 0.3s;
}

#car-eval-form input:focus,
#car-eval-form select:focus {
    border-color: #2b6cb0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

#car-eval-form button {
    background: #2b6cb0;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#car-eval-form button:hover {
    background: #2c5282;
    transform: translateY(-1px);
}

#car-eval-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Results Section */
#eval-results {
    display: none;
    margin-top: 30px;
}

#eval-results.show {
    display: block;
    background: white;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #2b6cb0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ai-response {
    color: #4a5568;
    line-height: 1.6;
}

.ai-response strong {
    color: #2b6cb0;
}

.error {
    color: #e53e3e;
    padding: 15px;
    background: #fff5f5;
    border-radius: 8px;
    border-left: 4px solid #e53e3e;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .car-eval-container {
        padding: 20px;
    }
    
    #car-eval-form input,
    #car-eval-form select {
        padding: 10px 12px;
    }
}