/* Vehicle Search Links Component */

#vehicle-links-section {
    margin: 16px 0;
    padding: 12px;
    background: #fef3c7;
    border: 1px solid #d97706;
    border-radius: 6px;
}

#vehicle-links-section h4 {
    margin-bottom: 8px;
    color: #92400e;
    font-size: 1rem;
    font-weight: 600;
}

.vehicle-links-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vehicle-link {
    flex: 1;
    min-width: 100px;
    padding: 6px 12px;
    background: #d97706;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.vehicle-link:hover {
    background: #b45309;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}